mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-22 16:50:04 +02:00
Fix issue #63
This commit is contained in:
parent
df66bfcfdc
commit
42f950b23b
1 changed files with 3 additions and 0 deletions
|
@ -204,6 +204,9 @@ public class ComposeActivity extends BaseActivity implements ComposeAdapter.Mana
|
|||
int statusCount = statusList.size();
|
||||
statusDraftList.get(0).in_reply_to_id = statusReply.id;
|
||||
statusDraftList.get(0).mentions = statusReply.mentions;
|
||||
if (statusReply.spoiler_text != null) {
|
||||
statusDraftList.get(0).spoiler_text = statusReply.spoiler_text;
|
||||
}
|
||||
if (statusDraftList.get(0).mentions == null) {
|
||||
statusDraftList.get(0).mentions = new ArrayList<>();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue