mirror of
https://codeberg.org/monocles/monocles_chat.git
synced 2025-01-15 22:22:22 +01:00
Disable download stickers
This commit is contained in:
parent
c8b6324445
commit
adb8b7c0b2
2 changed files with 4 additions and 4 deletions
|
@ -151,7 +151,7 @@ android {
|
|||
minSdkVersion 23
|
||||
targetSdkVersion 33
|
||||
|
||||
// versionNameSuffix " Experimental_(2023-10-24)" // " beta_(XXXX-XX-XX)" // activate for beta versions
|
||||
// versionNameSuffix " -beta_(2023-10-26)" // " beta_(XXXX-XX-XX)" // activate for beta versions
|
||||
versionCode 141
|
||||
versionName "1.7.6.4"
|
||||
//resConfigs "en"
|
||||
|
|
|
@ -316,7 +316,7 @@ public class ConversationsActivity extends XmppActivity implements OnConversatio
|
|||
|
||||
if (ExceptionHelper.checkForCrash(this)) return;
|
||||
if (offerToSetupDiallerIntegration()) return;
|
||||
if (offerToDownloadStickers()) return;
|
||||
// if (offerToDownloadStickers()) return; // TODO: Disabled Cheogram Stickers until it's more useful
|
||||
openBatteryOptimizationDialogIfNeeded();
|
||||
xmppConnectionService.rescanStickers();
|
||||
|
||||
|
@ -394,7 +394,7 @@ public class ConversationsActivity extends XmppActivity implements OnConversatio
|
|||
builder.setMessage("Would you like to download some default sticker packs?");
|
||||
builder.setPositiveButton(R.string.yes, (dialog, which) -> {
|
||||
if (hasStoragePermission(REQUEST_DOWNLOAD_STICKERS)) {
|
||||
downloadStickers();
|
||||
// downloadStickers(); // TODO: Disabled Cheogram Stickers until it's more useful
|
||||
}
|
||||
});
|
||||
builder.setNegativeButton(R.string.no, (dialog, which) -> {
|
||||
|
@ -592,7 +592,7 @@ public class ConversationsActivity extends XmppActivity implements OnConversatio
|
|||
startActivityForResult(intent, DIALLER_INTEGRATION);
|
||||
break;
|
||||
case REQUEST_DOWNLOAD_STICKERS:
|
||||
downloadStickers();
|
||||
// downloadStickers(); // TODO: Disabled Cheogram Stickers until it's more useful
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue