Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Fix lint error

Cette révision appartient à :
arkon 2024-01-05 17:49:19 -05:00
Parent 850813820c
révision 556f5a42a7

Voir le fichier

@ -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