fix: Kitsu domain change from kitsu.io to kitsu.app

REF: 244fdccca9
This commit is contained in:
Ahmad Ansori Palembani 2024-08-12 13:30:00 +07:00
parent 1720472f33
commit 945c2c28cd
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
3 changed files with 7 additions and 5 deletions

View file

@ -38,6 +38,8 @@
- Fixed (sorta, more like workaround) ANR issues when running background tasks, such as updating extensions - Fixed (sorta, more like workaround) ANR issues when running background tasks, such as updating extensions
- Fixed split (downloaded) tall images sometimes doesn't work - Fixed split (downloaded) tall images sometimes doesn't work
- Fixed status bar stuck in dark mode when app is following system theme - Fixed status bar stuck in dark mode when app is following system theme
- Fixed splash screen state only getting updates if library is empty (Should slightly reduce splash screen duration)
- Fixed kitsu tracker issue due to domain change
## Translation ## Translation
- Update Japanese translation (akir45) - Update Japanese translation (akir45)

View file

@ -44,7 +44,7 @@ Updates are sporadic, sometime fast, sometime slow.
* Tracker support: * Tracker support:
[MyAnimeList](https://myanimelist.net/), [MyAnimeList](https://myanimelist.net/),
[AniList](https://anilist.co/), [AniList](https://anilist.co/),
[Kitsu](https://kitsu.io/explore/anime), [Kitsu](https://kitsu.app/explore/anime),
[Manga Updates](https://www.mangaupdates.com/), [Manga Updates](https://www.mangaupdates.com/),
[Shikimori](https://shikimori.one), [Shikimori](https://shikimori.one),
and [Bangumi](https://bgm.tv/) support. and [Bangumi](https://bgm.tv/) support.

View file

@ -298,10 +298,10 @@ class KitsuApi(private val client: OkHttpClient, interceptor: KitsuInterceptor)
private const val clientSecret = private const val clientSecret =
"54d7307928f63414defd96399fc31ba847961ceaecef3a5fd93144e960c0e151" "54d7307928f63414defd96399fc31ba847961ceaecef3a5fd93144e960c0e151"
private const val baseUrl = "https://kitsu.io/api/edge/" private const val baseUrl = "https://kitsu.app/api/edge/"
private const val loginUrl = "https://kitsu.io/api/oauth/token" private const val loginUrl = "https://kitsu.app/api/oauth/token"
private const val baseMangaUrl = "https://kitsu.io/manga/" private const val baseMangaUrl = "https://kitsu.app/manga/"
private const val algoliaKeyUrl = "https://kitsu.io/api/edge/algolia-keys/media/" private const val algoliaKeyUrl = "https://kitsu.app/api/edge/algolia-keys/media/"
private const val algoliaUrl = private const val algoliaUrl =
"https://AWQO5J657S-dsn.algolia.net/1/indexes/production_media/query/" "https://AWQO5J657S-dsn.algolia.net/1/indexes/production_media/query/"