Skip to content

Commit

Permalink
update to 11.1.3 (5244)
Browse files Browse the repository at this point in the history
- fixed loading popular bots after cache expiration
- fixed editing caption after weather widget
  • Loading branch information
dkaraush committed Sep 10, 2024
1 parent 8558775 commit 1e89182
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,7 @@ public void load() {

if (System.currentTimeMillis() - cacheTime > 60 * 60 * 1000) {
bots.clear();
lastOffset = null;
load();
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1967,6 +1967,7 @@ protected boolean checkAudioPermission(Runnable granted) {
Weather.fetch(true, weather -> {
if (weather != null) {
alert.dismiss();
onOpenCloseStickersAlert(false);
appearAnimation(createWeatherView(weather, false));
}
});
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
#Sat Mar 12 05:53:50 MSK 2016
APP_VERSION_CODE=5243
APP_VERSION_CODE=5244
APP_VERSION_NAME=11.1.3
APP_PACKAGE=org.telegram.messenger
IS_PRIVATE=false
Expand Down

0 comments on commit 1e89182

Please sign in to comment.