|
@@ -86,7 +86,10 @@ internal class ExtensionGithubApi {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- suspend fun checkForUpdates(context: Context, fromAvailableExtensionList: Boolean = false): List<Extension.Installed>? {
|
|
|
+ suspend fun checkForUpdates(
|
|
|
+ context: Context,
|
|
|
+ fromAvailableExtensionList: Boolean = false,
|
|
|
+ ): List<Extension.Installed>? {
|
|
|
// Limit checks to once a day at most
|
|
|
if (!fromAvailableExtensionList &&
|
|
|
Instant.now().toEpochMilli() < lastExtCheck.get() + 1.days.inWholeMilliseconds
|