From 504266b9c501a5d4ffdf21d8a024265c02b72def Mon Sep 17 00:00:00 2001 From: Winston Date: Tue, 21 Apr 2026 16:05:55 -0500 Subject: [PATCH] Add titleSort and titleSortLock to BookMetadataDto --- .../kotlin/org/gotson/komga/interfaces/api/rest/dto/BookDto.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/BookDto.kt b/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/BookDto.kt index 1b451e70..b6a89c9a 100644 --- a/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/BookDto.kt +++ b/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/BookDto.kt @@ -47,6 +47,8 @@ data class MediaDto( data class BookMetadataDto( val title: String, val titleLock: Boolean, + val titleSort: String, + val titleSortLock: Boolean, val summary: String, val summaryLock: Boolean, val number: String,