ReadManga (RU): update domain (#4285)

This commit is contained in:
Vetle Ledaal 2024-07-27 16:08:11 +02:00 committed by GitHub
parent 5b712c6a3c
commit 94cda1680e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ import android.os.Bundle
import android.util.Log import android.util.Log
import kotlin.system.exitProcess import kotlin.system.exitProcess
/** /**
* Springboard that accepts https://readmanga.live/xxx intents and redirects them to * Springboard that accepts https://1.readmanga.io/xxx intents and redirects them to
* the main tachiyomi process. The idea is to not install the intent filter unless * the main tachiyomi process. The idea is to not install the intent filter unless
* you have this extension installed, but still let the main tachiyomi app control * you have this extension installed, but still let the main tachiyomi app control
* things. * things.

View File

@ -2,7 +2,7 @@ ext {
extName = 'ReadManga' extName = 'ReadManga'
extClass = '.ReadManga' extClass = '.ReadManga'
themePkg = 'grouple' themePkg = 'grouple'
baseUrl = 'https://readmanga.live' baseUrl = 'https://1.readmanga.io'
overrideVersionCode = 46 overrideVersionCode = 46
} }

View File

@ -12,7 +12,7 @@ import okhttp3.Request
import uy.kohesive.injekt.Injekt import uy.kohesive.injekt.Injekt
import uy.kohesive.injekt.api.get import uy.kohesive.injekt.api.get
class ReadManga : GroupLe("ReadManga", "https://readmanga.live", "ru") { class ReadManga : GroupLe("ReadManga", "https://1.readmanga.io", "ru") {
override val id: Long = 5 override val id: Long = 5
@ -190,6 +190,6 @@ class ReadManga : GroupLe("ReadManga", "https://readmanga.live", "ru") {
} }
companion object { companion object {
private const val DOMAIN_TITLE = "Домен" private const val DOMAIN_TITLE = "Домен"
private const val DOMAIN_DEFAULT = "https://readmanga.live" private const val DOMAIN_DEFAULT = "https://1.readmanga.io"
} }
} }