Remove F-droid warnings

This commit is contained in:
AntsyLich
2025-02-26 02:13:14 +06:00
parent 3ce013fa19
commit 181dbbb638
8 changed files with 1 additions and 99 deletions

View File

@@ -37,7 +37,6 @@ class GetApplicationRelease(
release.version,
)
return when {
isNewVersion && arguments.isThirdParty -> Result.ThirdPartyInstallation
isNewVersion -> Result.NewUpdate(release)
else -> Result.NoNewUpdate
}
@@ -75,7 +74,6 @@ class GetApplicationRelease(
data class Arguments(
val isPreview: Boolean,
val isThirdParty: Boolean,
val commitCount: Int,
val versionName: String,
val repository: String,
@@ -86,6 +84,5 @@ class GetApplicationRelease(
data class NewUpdate(val release: Release) : Result
data object NoNewUpdate : Result
data object OsTooOld : Result
data object ThirdPartyInstallation : Result
}
}