Update base URL and host for Pururin to pururin.me (#1415)

This commit is contained in:
cfouche 2025-03-18 22:43:03 +01:00 committed by GitHub
parent 9c198d0c33
commit dbd4437474
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 4 deletions

View File

@ -359,7 +359,7 @@
<data android:scheme="https" />
<data android:scheme="http" />
<data android:host="pururin.io" />
<data android:host="pururin.me" />
<data android:pathPattern="/gallery/..*" />
</intent-filter>

View File

@ -126,8 +126,7 @@ class Pururin(delegate: HttpSource, val context: Context) :
}
override val matchingHosts = listOf(
"pururin.io",
"www.pururin.io",
"pururin.me"
)
override suspend fun mapUrlToMangaUrl(uri: Uri): String {

View File

@ -81,6 +81,6 @@ class PururinSearchMetadata : RaisedSearchMetadata() {
private const val TAG_NAMESPACE_ARTIST = "artist"
const val TAG_NAMESPACE_CATEGORY = "category"
const val BASE_URL = "https://pururin.io"
const val BASE_URL = "https://pururin.me"
}
}