Use consistent extension icon URLs

Better caching between versions.

(cherry picked from commit 30f845139d)
This commit is contained in:
arkon 2023-07-16 15:44:36 -04:00
parent c615f4d458
commit 91712daee8

View File

@ -117,7 +117,7 @@ internal class ExtensionGithubApi {
hasChangelog = it.hasChangelog == 1, hasChangelog = it.hasChangelog == 1,
sources = it.sources?.toExtensionSources() ?: emptyList(), sources = it.sources?.toExtensionSources() ?: emptyList(),
apkName = it.apk, apkName = it.apk,
iconUrl = "${getUrlPrefix()}icon/${it.apk.replace(".apk", ".png")}", iconUrl = "${getUrlPrefix()}icon/${it.pkg}.png",
) )
} }
} }