1
0
mirror of https://codeberg.org/tom79/Fedilab synced 2025-01-24 16:31:08 +01:00

Fix issue #287 - crash with deleting / redrafting a reply

This commit is contained in:
Thomas 2022-07-31 11:21:49 +02:00
parent 51c3bc56f3
commit 745de828bb

View File

@ -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);
}
}
}