fix(pt/animesgames): Update baseUrl (#2419)

This commit is contained in:
Claudemirovsky
2023-10-26 08:03:30 -03:00
committed by GitHub
parent 81909af6e1
commit 659afd38cb
4 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="animesgames.net"
android:host="animesgames.cc"
android:pathPattern="/animes/..*"
android:scheme="https" />
</intent-filter>

View File

@ -8,7 +8,7 @@ ext {
extName = 'Animes Games'
pkgNameSuffix = 'pt.animesgames'
extClass = '.AnimesGames'
extVersionCode = 1
extVersionCode = 2
libVersion = '13'
}

View File

@ -29,7 +29,7 @@ class AnimesGames : ParsedAnimeHttpSource() {
override val name = "Animes Games"
override val baseUrl = "https://animesgames.net"
override val baseUrl = "https://animesgames.cc"
override val lang = "pt-BR"

View File

@ -8,7 +8,7 @@ import android.util.Log
import kotlin.system.exitProcess
/**
* Springboard that accepts https://animesgames.net/animes/<item> intents
* Springboard that accepts https://animesgames.cc/animes/<item> intents
* and redirects them to the main Aniyomi process.
*/
class AnimesGamesUrlActivity : Activity() {