Browse Source

Fix incorrect hashtag message in user's mentions

master
digital dreamer 10 years ago
parent
commit
e3dd14fb77
  1. 2
      js/twister_actions.js

2
js/twister_actions.js

@ -318,7 +318,7 @@ function processHashtag(postboard, hashtag, data) { @@ -318,7 +318,7 @@ function processHashtag(postboard, hashtag, data) {
}
}
if(!postboard.children().length&&!_hashtagPendingPosts.length)
if(!postboard.children().length && !_hashtagPendingPosts.length && hashtag != defaultScreenName)
postboard.closest("div").find(".no-posts-found-message").show();
if( _hashtagPendingPosts.length ) {

Loading…
Cancel
Save