mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-01-07 00:20:08 +02:00
Fix issue #287 - crash with deleting / redrafting a reply
This commit is contained in:
parent
51c3bc56f3
commit
745de828bb
1 changed files with 3 additions and 1 deletions
|
@ -386,7 +386,9 @@ public class ComposeActivity extends BaseActivity implements ComposeAdapter.Mana
|
|||
});
|
||||
|
||||
} else {
|
||||
composeAdapter.addSharing(null, null, sharedDescription, null, sharedContent, null);
|
||||
if (composeAdapter != null) {
|
||||
composeAdapter.addSharing(null, null, sharedDescription, null, sharedContent, null);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue