Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update frequency check 7 days #8716

Merged
merged 1 commit into from
Feb 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion sickchill/gui/slick/views/config_general.mako
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
</div>
<div class="row">
<div class="col-md-12">
<label for="update_frequency">${_('hours for software updates (default:1)')}</label>
<label for="update_frequency">${_('hours for software updates (default:168 (7d))')}</label>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion sickchill/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
DEFAULT_DAILYSEARCH_FREQUENCY = 40
DEFAULT_PAGE = "home"
DEFAULT_SHOWUPDATE_HOUR = random.randint(2, 4)
DEFAULT_UPDATE_FREQUENCY = 1
DEFAULT_UPDATE_FREQUENCY = 168
DELETE_FAILED = False
DELETE_NON_ASSOCIATED_FILES = False
DELRARCONTENTS = False
Expand Down