Handle potentially missing sources list in extensions JSON

Can happen in:
- Unofficial repos
- If the inspector breaks
This commit is contained in:
arkon 2021-12-21 08:47:01 -05:00
parent d022bf2673
commit b701821550

View File

@ -81,7 +81,7 @@ internal class ExtensionGithubApi {
versionCode = it.code,
lang = it.lang,
isNsfw = it.nsfw == 1,
sources = it.sources.toExtensionSources(),
sources = it.sources?.toExtensionSources() ?: emptyList(),
apkName = it.apk,
iconUrl = "${REPO_URL_PREFIX}icon/${it.apk.replace(".apk", ".png")}"
)
@ -114,7 +114,7 @@ private data class ExtensionJsonObject(
val code: Long,
val version: String,
val nsfw: Int,
val sources: List<ExtensionSourceJsonObject>,
val sources: List<ExtensionSourceJsonObject>?,
)
@Serializable