Fix library filter

This commit is contained in:
Samuel Martins
2024-04-14 10:32:47 +02:00
parent 65de4667e1
commit 79b11bf080

View File

@@ -1184,7 +1184,7 @@ class Kavita(private val suffix: String = "") : ConfigurableSource, UnmeteredSou
}
}
// libraries
client.newCall(GET("$apiUrl/Library", headersBuilder().build()))
client.newCall(GET("$apiUrl/Library/libraries", headersBuilder().build()))
.execute().use { response ->
libraryListMeta = try {
response.body.use { json.decodeFromString(it.string()) }