1
0
Fork 1

Revert "Disable download stickers"

This reverts commit 00a77dcc
This commit is contained in:
Arne 2023-11-21 20:16:21 +01:00
parent b5fdaf76b0
commit 55651a7efe

View file

@ -317,7 +317,7 @@ public class ConversationsActivity extends XmppActivity implements OnConversatio
if (ExceptionHelper.checkForCrash(this)) return;
if (offerToSetupDiallerIntegration()) return;
// if (offerToDownloadStickers()) return; // TODO: Disabled Cheogram Stickers until it's more useful
if (offerToDownloadStickers()) return;
openBatteryOptimizationDialogIfNeeded();
xmppConnectionService.rescanStickers();
@ -395,7 +395,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(); // TODO: Disabled Cheogram Stickers until it's more useful
downloadStickers();
}
});
builder.setNegativeButton(R.string.no, (dialog, which) -> {
@ -593,7 +593,7 @@ public class ConversationsActivity extends XmppActivity implements OnConversatio
startActivityForResult(intent, DIALLER_INTEGRATION);
break;
case REQUEST_DOWNLOAD_STICKERS:
// downloadStickers(); // TODO: Disabled Cheogram Stickers until it's more useful
downloadStickers();
break;
}
} else {