Disable new behavior for Play store release for now

This commit is contained in:
M66B
2021-08-23 13:05:01 +02:00
parent af2e4b86fe
commit 66bf18bf8c
2 changed files with 3 additions and 2 deletions

View File

@@ -217,7 +217,7 @@ public class ActivityCompose extends ActivityBase implements FragmentManager.OnB
long now = new Date().getTime();
long last = prefs.getLong("last_composed", 0L);
if (!create &&
if (!create && !BuildConfig.PLAY_STORE_RELEASE &&
now - last < APPEND_ATTACHMENT_INTERVAL &&
args.size() == 1 && args.containsKey("attachments")) {
List<Fragment> fragments = fm.getFragments();