UnionMangas: Fix domain changed (#2478)

* Fix domain

* Fix AndroidManifest host
This commit is contained in:
Chopper 2024-04-19 10:53:02 -03:00 committed by Draff
parent adbcbd33ef
commit 848168f3ae
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.BROWSABLE" />
<data android:host="https://unionmangas.xyz" /> <data android:host="unionmangasbr.org" />
<data android:scheme="https"/> <data android:scheme="https"/>
<data android:pathPattern="/manga-br/..*"/> <data android:pathPattern="/manga-br/..*"/>

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'Union Mangas' extName = 'Union Mangas'
extClass = '.UnionMangasFactory' extClass = '.UnionMangasFactory'
extVersionCode = 1 extVersionCode = 2
isNsfw = true isNsfw = true
} }

View File

@ -32,7 +32,7 @@ class UnionMangas(private val langOption: LanguageOption) : HttpSource() {
override val name: String = "Union Mangas" override val name: String = "Union Mangas"
override val baseUrl: String = "https://unionmangas.xyz" override val baseUrl: String = "https://unionmangasbr.org"
override val supportsLatest = true override val supportsLatest = true