update to 11.1.3 (5244)

- fixed loading popular bots after cache expiration
- fixed editing caption after weather widget
This commit is contained in:
dkaraush 2024-09-11 02:48:10 +04:00
parent 8558775967
commit 1e89182699
3 changed files with 3 additions and 1 deletions

View file

@ -488,6 +488,7 @@ public class DialogsBotsAdapter extends UniversalAdapter {
if (System.currentTimeMillis() - cacheTime > 60 * 60 * 1000) { if (System.currentTimeMillis() - cacheTime > 60 * 60 * 1000) {
bots.clear(); bots.clear();
lastOffset = null;
load(); load();
} }
}); });

View file

@ -1967,6 +1967,7 @@ public class PaintView extends SizeNotifierFrameLayoutPhoto implements IPhotoPai
Weather.fetch(true, weather -> { Weather.fetch(true, weather -> {
if (weather != null) { if (weather != null) {
alert.dismiss(); alert.dismiss();
onOpenCloseStickersAlert(false);
appearAnimation(createWeatherView(weather, false)); appearAnimation(createWeatherView(weather, false));
} }
}); });

View file

@ -13,7 +13,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true # org.gradle.parallel=true
#Sat Mar 12 05:53:50 MSK 2016 #Sat Mar 12 05:53:50 MSK 2016
APP_VERSION_CODE=5243 APP_VERSION_CODE=5244
APP_VERSION_NAME=11.1.3 APP_VERSION_NAME=11.1.3
APP_PACKAGE=org.telegram.messenger APP_PACKAGE=org.telegram.messenger
IS_PRIVATE=false IS_PRIVATE=false