Enabled gzip for Play Store version (2)

This commit is contained in:
M66B 2023-08-27 14:59:02 +02:00
parent 0f34bd4c49
commit 6a9a71f0d0
1 changed files with 2 additions and 2 deletions

View File

@ -120,13 +120,13 @@ public class EntityAttachment {
boolean isCompressed() {
if ("application/zip".equals(type))
return true;
if ("application/gzip".equals(type) && !BuildConfig.PLAY_STORE_RELEASE)
if ("application/gzip".equals(type))
return true;
String extension = Helper.getExtension(name);
if ("zip".equals(extension))
return true;
if ("gz".equals(extension) && !BuildConfig.PLAY_STORE_RELEASE)
if ("gz".equals(extension))
return true;
return false;