WIP: (en/animeowl) Solving NumerFormat expection #757

Closed
Arkai1 wants to merge 4 commits from Arkai1-patch-1 into main
Showing only changes of commit 989358fe1b - Show all commits

View file

@ -44,8 +44,11 @@ class AnimeOwl : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
override val supportsLatest = true
private val json: Json by injectLazy()
private val json: Json by lazy {
Json {
ignoreUnknownKeys = true
coerceInputValues = true
}
private val preferences: SharedPreferences by lazy {
Injekt.get<Application>().getSharedPreferences("source_$id", 0x0000)
}