@@ -351,7 +351,7 @@ public void commonNext() {
351351 }
352352 // update compat metadata
353353 if (BuildConfig .DEBUG ) Timber .i ("Check Update Compat" );
354- AppUpdateManager .getAppUpdateManager ().checkUpdateCompat ();
354+ AppUpdateManager .Companion . getAppUpdateManager ().checkUpdateCompat ();
355355 if (BuildConfig .DEBUG ) Timber .i ("Check Update" );
356356 // update repos
357357 if (Http .hasWebView ()) {
@@ -375,7 +375,7 @@ public void commonNext() {
375375 return ;
376376 }
377377 // Compatibility data still needs to be updated
378- AppUpdateManager appUpdateManager = AppUpdateManager .getAppUpdateManager ();
378+ AppUpdateManager appUpdateManager = AppUpdateManager .Companion . getAppUpdateManager ();
379379 if (BuildConfig .DEBUG ) Timber .i ("Check App Update" );
380380 if (BuildConfig .ENABLE_AUTO_UPDATER && appUpdateManager .checkUpdate (true ))
381381 moduleViewListBuilder .addNotification (NotificationType .UPDATE_AVAILABLE );
@@ -554,7 +554,7 @@ public void commonNext() {
554554 moduleViewListBuilder .addNotification (NotificationType .SHOWCASE_MODE );
555555 NotificationType .NEED_CAPTCHA_ANDROIDACY .autoAdd (moduleViewListBuilderOnline );
556556 NotificationType .NO_INTERNET .autoAdd (moduleViewListBuilderOnline );
557- if (AppUpdateManager .getAppUpdateManager ().checkUpdate (false ))
557+ if (AppUpdateManager .Companion . getAppUpdateManager ().checkUpdate (false ))
558558 moduleViewListBuilder .addNotification (NotificationType .UPDATE_AVAILABLE );
559559 RepoManager .getINSTANCE ().updateEnabledStates ();
560560 if (RepoManager .getINSTANCE ().getCustomRepoManager ().needUpdate ()) {
@@ -607,7 +607,7 @@ public void onRefresh() {
607607 moduleViewListBuilder .addNotification (NotificationType .REPO_UPDATE_FAILED );
608608 } else {
609609 // Compatibility data still needs to be updated
610- AppUpdateManager appUpdateManager = AppUpdateManager .getAppUpdateManager ();
610+ AppUpdateManager appUpdateManager = AppUpdateManager .Companion . getAppUpdateManager ();
611611 if (BuildConfig .DEBUG ) Timber .i ("Check App Update" );
612612 if (BuildConfig .ENABLE_AUTO_UPDATER && appUpdateManager .checkUpdate (true ))
613613 moduleViewListBuilder .addNotification (NotificationType .UPDATE_AVAILABLE );
0 commit comments