Skip to content

Commit

Permalink
SpotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
jobobby04 committed Oct 14, 2024
1 parent dc88ea8 commit 6464c00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ object SettingsSecurityScreen : SearchableSettings {
.toImmutableMap(),
enabled = passwordProtectDownloads,

),
),
kotlin.run {
var dialogOpen by remember { mutableStateOf(false) }
if (dialogOpen) {
Expand Down Expand Up @@ -217,7 +217,7 @@ object SettingsSecurityScreen : SearchableSettings {
},
// SY <--
Preference.PreferenceItem.InfoPreference(stringResource(MR.strings.secure_screen_summary)),
)
),
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import okio.sink
import tachiyomi.core.common.i18n.stringResource
import tachiyomi.core.common.util.system.logcat
import tachiyomi.data.DatabaseHandler
import tachiyomi.data.manga.MangaMapper
import tachiyomi.domain.backup.service.BackupPreferences
import tachiyomi.domain.manga.interactor.GetFavorites
import tachiyomi.domain.manga.interactor.GetMergedManga
Expand Down Expand Up @@ -91,7 +90,8 @@ class BackupCreator(
// SY -->
val mergedManga = getMergedManga.await()
// SY <--
val backupManga = backupMangas(getFavorites.await() + nonFavoriteManga /* SY --> */ + mergedManga /* SY <-- */, options)
val backupManga =
backupMangas(getFavorites.await() + nonFavoriteManga /* SY --> */ + mergedManga /* SY <-- */, options)

val backup = Backup(
backupManga = backupManga,
Expand Down

0 comments on commit 6464c00

Please sign in to comment.