Don't recheck for updates on configuration change (#3708)

This commit is contained in:
AntsyLich
2026-08-06 21:38:28 +06:00
committed by GitHub
parent aa25b3a14c
commit 68aa4b003f
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -11,6 +11,8 @@ The format is a modified version of [Keep a Changelog](https://keepachangelog.co
- `Other` - for technical stuff. - `Other` - for technical stuff.
## [Unreleased] ## [Unreleased]
### Fixed
- Fixed app and extension update check running again on configuration change ([@AntsyLich](https://github.com/AntsyLich)) ([#3708](https://github.com/mihonapp/mihon/pull/3708))
## [v0.20.4] - 2026-08-05 ## [v0.20.4] - 2026-08-05
### Fixed ### Fixed
@@ -259,7 +259,7 @@ class MainActivity : BaseActivity() {
HandleOnNewIntent(context = context, navigator = navigator) HandleOnNewIntent(context = context, navigator = navigator)
if (!isBenchmarkBuildType) { if (!isBenchmarkBuildType) {
CheckForUpdates() if (isLaunch) CheckForUpdates()
ShowOnboarding() ShowOnboarding()
ShowDonationCampaign() ShowDonationCampaign()
} }