MangaUpdates API content-type heade (#3021)

Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com>
This commit is contained in:
Leodyver Semilla
2026-03-19 16:45:11 +08:00
committed by GitHub
parent c495753315
commit 51fb9c0b76
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -16,6 +16,7 @@ The format is a modified version of [Keep a Changelog](https://keepachangelog.co
### Fixed
- Fix tracker-induced duplicate key crash in duplicate detection ([@leodyversemilla07](https://github.com/leodyversemilla07)) ([#3040](https://github.com/mihonapp/mihon/pull/3040))
- MangaUpdates API content-type header ([@leodyversemilla07](https://github.com/leodyversemilla07)) ([#3021](https://github.com/mihonapp/mihon/pull/3021))
## [v0.19.4] - 2026-02-25
### Added
@@ -193,6 +193,6 @@ class MangaUpdatesApi(
companion object {
private const val BASE_URL = "https://api.mangaupdates.com"
private val CONTENT_TYPE = "application/vnd.api+json".toMediaType()
private val CONTENT_TYPE = "application/json".toMediaType()
}
}