Skip to content

Commit

Permalink
- Update asset regex for K-9 Mail updates (#648)
Browse files Browse the repository at this point in the history
  • Loading branch information
kewisch authored Nov 20, 2024
1 parent a939ef1 commit f35b87b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ object K9Mail : AppBase() {
val result = GithubConsumer.findLatestRelease(
repository = GithubConsumer.GithubRepo("thunderbird", "thunderbird-android", 0),
isValidRelease = { true },
isSuitableAsset = { it.name.matches("k9-([0-9.]+).apk".toRegex()) },
isSuitableAsset = { it.name.matches("k9mail-([0-9.]+).apk".toRegex()) },
requireReleaseDescription = false,
)
return LatestVersion(
Expand Down

0 comments on commit f35b87b

Please sign in to comment.