diff --git a/core/src/commonMain/kotlin/ca/gosyer/jui/core/prefs/StandardAdapters.kt b/core/src/commonMain/kotlin/ca/gosyer/jui/core/prefs/StandardAdapters.kt index 151986bd..194bd73b 100644 --- a/core/src/commonMain/kotlin/ca/gosyer/jui/core/prefs/StandardAdapters.kt +++ b/core/src/commonMain/kotlin/ca/gosyer/jui/core/prefs/StandardAdapters.kt @@ -167,7 +167,7 @@ internal class JsonObjectAdapter( * Todo doesn't work */ override fun addListener(key: String, preferences: ObservableSettings, callback: () -> Unit): SettingsListener { - @Suppress("DEPRECATION") // Because we don't cate about the type, and it crashes with any other listener + @Suppress("DEPRECATION") // Because we don't care about the type, and it crashes with any other listener return preferences.addListener(key) { callback() } } } diff --git a/domain/src/commonMain/kotlin/ca/gosyer/jui/domain/library/model/UpdateStatus.kt b/domain/src/commonMain/kotlin/ca/gosyer/jui/domain/library/model/UpdateStatus.kt index b9892620..f8be7b06 100644 --- a/domain/src/commonMain/kotlin/ca/gosyer/jui/domain/library/model/UpdateStatus.kt +++ b/domain/src/commonMain/kotlin/ca/gosyer/jui/domain/library/model/UpdateStatus.kt @@ -6,10 +6,11 @@ package ca.gosyer.jui.domain.library.model +import ca.gosyer.jui.domain.manga.model.Manga import kotlinx.serialization.Serializable @Serializable data class UpdateStatus( - val statusMap: Map, + val statusMap: Map>, val running: Boolean )