Skip to content

Commit db50eb7

Browse files
authored
Disable download ahead limit by default (#778)
Currently, it causes the download ahead while reading logic in the WebUI to be enabled by default, which should be disabled by default
1 parent d21b201 commit db50eb7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/src/main/resources/server-reference.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ server.downloadAsCbz = false
2121
server.downloadsPath = ""
2222
server.autoDownloadNewChapters = false # if new chapters that have been retrieved should get automatically downloaded
2323
server.excludeEntryWithUnreadChapters = true # ignore automatic chapter downloads of entries with unread chapters
24-
server.autoDownloadAheadLimit = 5 # 0 to disable it - how many unread downloaded chapters should be available - if the limit is reached, new chapters won't be downloaded automatically
24+
server.autoDownloadAheadLimit = 0 # 0 to disable it - how many unread downloaded chapters should be available - if the limit is reached, new chapters won't be downloaded automatically. this limit will also be applied to the auto download of new chapters on an update
2525

2626
# requests
2727
server.maxSourcesInParallel = 6 # range: 1 <= n <= 20 - default: 6 - sets how many sources can do requests (updates, downloads) in parallel. updates/downloads are grouped by source and all mangas of a source are updated/downloaded synchronously

server/src/test/resources/server-reference.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ server.socksProxyPort = ""
1111
server.downloadAsCbz = false
1212
server.autoDownloadNewChapters = false
1313
server.excludeEntryWithUnreadChapters = true
14-
server.autoDownloadAheadLimit = 5
14+
server.autoDownloadAheadLimit = 0
1515

1616
# requests
1717
server.maxSourcesInParallel = 10

0 commit comments

Comments
 (0)