Skip to content

Commit

Permalink
Make settings required
Browse files Browse the repository at this point in the history
  • Loading branch information
schroda committed Oct 29, 2023
1 parent c7d186b commit 80d37d9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ class SettingsType(
override val downloadAsCbz: Boolean,
override val downloadsPath: String,
override val autoDownloadNewChapters: Boolean,
override val excludeEntryWithUnreadChapters: Boolean?,
override val autoDownloadAheadLimit: Int?,
override val excludeEntryWithUnreadChapters: Boolean,
override val autoDownloadAheadLimit: Int,
// requests
override val maxSourcesInParallel: Int,
// updater
Expand All @@ -149,7 +149,7 @@ class SettingsType(
override val basicAuthPassword: String,
// misc
override val debugLogsEnabled: Boolean,
override val gqlDebugLogsEnabled: Boolean?,
override val gqlDebugLogsEnabled: Boolean,
override val systemTrayEnabled: Boolean,
// backup
override val backupPath: String,
Expand Down

0 comments on commit 80d37d9

Please sign in to comment.