Commit 62fe2cde authored by Thomas's avatar Thomas
Browse files

Fix issue #1161 - handle included twice when replying to a self user's boost

parent 2f663d1b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -669,7 +669,7 @@ public class ComposeActivity extends BaseActivity implements ComposeAdapter.Mana
                        mention.username = mentionBooster.username;
                        boolean present = false;
                        for (Mention mentionTmp : statusDraftList.get(0).mentions) {
                            if (mentionTmp.acct.equalsIgnoreCase(mentionBooster.acct)) {
                            if (mentionTmp.acct.equalsIgnoreCase("@"+mentionBooster.acct)) {
                                present = true;
                                break;
                            }