MangaDex: update base URL to include www, remove temporary domain handlers

This is a workaround for the site not loading properly in WebView sometimes due to some
of their assets failing to load when not on the www subdomain for some reason.
This commit is contained in:
arkon 2020-04-30 09:31:33 -04:00
parent 2f4463add7
commit 9e8f89beb0
3 changed files with 4 additions and 8 deletions

View File

@ -23,11 +23,7 @@
android:pathPattern="/manga/..*" /> android:pathPattern="/manga/..*" />
<data <data
android:scheme="https" android:scheme="https"
android:host="mangadex.cc" android:host="www.mangadex.org"
android:pathPattern="/title/..*" />
<data
android:scheme="https"
android:host="mangadex.cc"
android:pathPattern="/manga/..*" /> android:pathPattern="/manga/..*" />
</intent-filter> </intent-filter>
</activity> </activity>

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: MangaDex' appName = 'Tachiyomi: MangaDex'
pkgNameSuffix = 'all.mangadex' pkgNameSuffix = 'all.mangadex'
extClass = '.MangadexFactory' extClass = '.MangadexFactory'
extVersionCode = 88 extVersionCode = 89
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -55,9 +55,9 @@ abstract class Mangadex(
override val name = "MangaDex" override val name = "MangaDex"
override val baseUrl = "https://mangadex.org" override val baseUrl = "https://www.mangadex.org"
private val cdnUrl = "https://mangadex.org" // "https://s0.mangadex.org" private val cdnUrl = "https://www.mangadex.org" // "https://s0.mangadex.org"
override val supportsLatest = true override val supportsLatest = true