mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-11-01 13:53:28 +01:00
Toggle to disable update check on detail page (#659), string capitalization consistency
This commit is contained in:
@@ -44,7 +44,10 @@ class _AppPageState extends State<AppPage> {
|
||||
? sourceProvider.getSource(app.app.url,
|
||||
overrideSource: app.app.overrideSource)
|
||||
: null;
|
||||
if (!areDownloadsRunning && prevApp == null && app != null) {
|
||||
if (!areDownloadsRunning &&
|
||||
prevApp == null &&
|
||||
app != null &&
|
||||
settingsProvider.checkUpdateOnDetailPage) {
|
||||
prevApp = app;
|
||||
getUpdate(app.app.id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user