diff --git a/src/all/torrentioanime/build.gradle b/src/all/torrentioanime/build.gradle index fe42d897d3..78a2007b35 100644 --- a/src/all/torrentioanime/build.gradle +++ b/src/all/torrentioanime/build.gradle @@ -1,7 +1,7 @@ ext { extName = 'Torrentio Anime (Torrent / Debrid)' extClass = '.Torrentio' - extVersionCode = 1 + extVersionCode = 2 containsNsfw = false } diff --git a/src/all/torrentioanime/src/eu/kanade/tachiyomi/animeextension/all/torrentioanime/Torrentio.kt b/src/all/torrentioanime/src/eu/kanade/tachiyomi/animeextension/all/torrentioanime/Torrentio.kt index 7e1e0d1cdf..4245df3f70 100644 --- a/src/all/torrentioanime/src/eu/kanade/tachiyomi/animeextension/all/torrentioanime/Torrentio.kt +++ b/src/all/torrentioanime/src/eu/kanade/tachiyomi/animeextension/all/torrentioanime/Torrentio.kt @@ -417,7 +417,7 @@ class Torrentio : ConfigurableAnimeSource, AnimeHttpSource() { appendQueryParam("sort", sortKey?.let { setOf(it) }) val token = preferences.getString(PREF_TOKEN_KEY, null) - val debridProvider = preferences.getString(PREF_DEBRID_KEY, null) + val debridProvider = preferences.getString(PREF_DEBRID_KEY, "none") when { token.isNullOrBlank() && debridProvider != "none" -> { @@ -442,7 +442,7 @@ class Torrentio : ConfigurableAnimeSource, AnimeHttpSource() { override fun videoListParse(response: Response): List