diff --git a/README.md b/README.md index 895ba6b..46edd6b 100644 --- a/README.md +++ b/README.md @@ -217,6 +217,7 @@ $('.newsfeed').socialstream({

v1.3

 - Fixed Youtube stream - switched to API v3.
+- Fixed issue with Smiley icons on DeviantArt stream.
 
diff --git a/socialstream.jquery.js b/socialstream.jquery.js index c19ec58..4e6b352 100644 --- a/socialstream.jquery.js +++ b/socialstream.jquery.js @@ -183,6 +183,12 @@ $container.append(entry.content); var url = entry.link; var photo_url = $container.find('img').attr('src'); + + // ignore smiley images + if (photo_url.indexOf("smile.gif") >= 0){ + continue; + } + var photo_title = entry.title; if (options.overlay) { var overlay_div = '
';