mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-04-06 07:00:01 +03:00
Fix issue #1161 - handle included twice when replying to a self user's boost
This commit is contained in:
parent
2f663d1bd9
commit
62fe2cde10
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue