Skip to content

Commit

Permalink
fix(hashtag/mute): mute hashtag with prefixed #-symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
FineFindus committed Sep 25, 2023
1 parent 4f8c4c6 commit ac8562a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ private void unmuteHashtag() {
private void muteHashtag() {
FilterKeyword hashtagFilter=new FilterKeyword();
hashtagFilter.wholeWord=true;
hashtagFilter.keyword=hashtag;
hashtagFilter.keyword="#"+hashtag;
new CreateFilter("#"+hashtag, EnumSet.of(FilterContext.HOME), FilterAction.HIDE, 0 , List.of(hashtagFilter)).setCallback(new Callback<Filter>(){
@Override
public void onSuccess(Filter result){
Expand Down

0 comments on commit ac8562a

Please sign in to comment.