Fixed podcast mapper

This commit is contained in:
Jéluchu 2025-06-11 19:55:13 +02:00
parent 93cf3816d6
commit 5e4392f861
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class AnitakumeService(
.find()
.toList()
val elements = animes.map { documentToNewsEntity(it) }
val elements = animes.map { documentToAnitakumeEntity(it) }
call.respond(HttpStatusCode.OK, Json.encodeToString(elements))
}
}