mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-10 14:24:34 -05:00
Compare commits
2 Commits
renovate/c
...
renovate/m
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cb872fd62c | ||
|
|
9a0871ab93 |
@@ -13,7 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|||||||
- .
|
- .
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- .
|
- (**Extension**) Fix missing memo field in getPageList
|
||||||
|
|
||||||
## [v2.3.2238] - 2026-07-05
|
## [v2.3.2238] - 2026-07-05
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ polyglot = "25.0.3"
|
|||||||
settings = "1.3.0"
|
settings = "1.3.0"
|
||||||
twelvemonkeys = "3.13.1"
|
twelvemonkeys = "3.13.1"
|
||||||
graphqlkotlin = "10.0.0"
|
graphqlkotlin = "10.0.0"
|
||||||
xmlserialization = "0.91.3"
|
xmlserialization = "1.0.1"
|
||||||
ktlint = "1.8.0"
|
ktlint = "1.8.0"
|
||||||
koin = "4.2.2"
|
koin = "4.2.2"
|
||||||
moko = "0.26.4"
|
moko = "0.26.4"
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import io.github.oshai.kotlinlogging.KotlinLogging
|
|||||||
import io.github.reactivecircus.cache4k.Cache
|
import io.github.reactivecircus.cache4k.Cache
|
||||||
import kotlinx.coroutines.sync.Mutex
|
import kotlinx.coroutines.sync.Mutex
|
||||||
import kotlinx.coroutines.sync.withLock
|
import kotlinx.coroutines.sync.withLock
|
||||||
|
import kotlinx.serialization.json.Json
|
||||||
import org.jetbrains.exposed.v1.core.ResultRow
|
import org.jetbrains.exposed.v1.core.ResultRow
|
||||||
import org.jetbrains.exposed.v1.core.and
|
import org.jetbrains.exposed.v1.core.and
|
||||||
import org.jetbrains.exposed.v1.core.eq
|
import org.jetbrains.exposed.v1.core.eq
|
||||||
@@ -88,6 +89,7 @@ suspend fun refreshChapterPageList(
|
|||||||
scanlator = chapterEntry[ChapterTable.scanlator]
|
scanlator = chapterEntry[ChapterTable.scanlator]
|
||||||
chapter_number = chapterEntry[ChapterTable.chapter_number]
|
chapter_number = chapterEntry[ChapterTable.chapter_number]
|
||||||
date_upload = chapterEntry[ChapterTable.date_upload]
|
date_upload = chapterEntry[ChapterTable.date_upload]
|
||||||
|
memo = Json.decodeFromString(chapterEntry[ChapterTable.memo])
|
||||||
},
|
},
|
||||||
).mapIndexed { index, page -> Page(index, page.url, page.imageUrl, page.uri) }
|
).mapIndexed { index, page -> Page(index, page.url, page.imageUrl, page.uri) }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user