Fix crash on sharing card + release 2.11.2

This commit is contained in:
Sylvia van Os
2021-12-04 14:03:52 +01:00
parent 6b4a01c954
commit 6a91d59050
3 changed files with 7 additions and 2 deletions

View File

@@ -197,6 +197,7 @@ public class ImportURIHelper {
sendIntent.setType("text/plain");
Intent shareIntent = Intent.createChooser(sendIntent, null);
shareIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(shareIntent);
}
}