Fixes small issue with mention in spoilers

This commit is contained in:
stom79 2017-12-22 14:22:57 +01:00
parent c8e8500a54
commit 0f1a364069
1 changed files with 1 additions and 1 deletions

View File

@ -1097,7 +1097,7 @@ public class Helper {
String cw_mention = "";
for(Mention mention:mentions){
cw_mention = String.format("@%s %s",mention.getAcct(),cw_mention);
cw_mention = String.format("@%s %s",mention.getUsername(),cw_mention);
}
SpannableString spannableString = new SpannableString(cw_mention);
for (final Mention mention : mentions) {