mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-11 15:56:07 -07:00
Enable dynamic anonymous redirect by default in setup wizard
This commit is contained in:
parent
74cd494162
commit
bd9fe54fd7
2 changed files with 8 additions and 1 deletions
|
@ -239,7 +239,8 @@
|
|||
<input type="checkbox" name="refresh_libraries_on_startup" id="refresh_libraries_on_startup" value="1" checked>
|
||||
<input type="checkbox" name="check_github" id="check_github" value="1" checked>
|
||||
<input type="checkbox" name="log_blacklist" id="log_blacklist" value="1" checked>
|
||||
<input type="checkbox" name="log_blacklist_usernames" id="log_blacklist" value="1" checked>
|
||||
<input type="checkbox" name="log_blacklist_usernames" id="log_blacklist_usernames" value="1" checked>
|
||||
<input type="checkbox" name="anon_redirect_dynamic" id="anon_redirect_dynamic" value="1" checked>
|
||||
<input type="checkbox" name="cache_images" id="cache_images" value="1" checked>
|
||||
<input type="checkbox" name="notify_group_recently_added_grandparent" id="notify_group_recently_added_grandparent" value="1" checked>
|
||||
<input type="checkbox" name="notify_group_recently_added_parent" id="notify_group_recently_added_parent" value="1" checked>
|
||||
|
|
|
@ -704,3 +704,9 @@ class Config(object):
|
|||
self.FIRST_RUN_COMPLETE = 1
|
||||
|
||||
self.CONFIG_VERSION = 21
|
||||
|
||||
if self.CONFIG_VERSION == 21:
|
||||
if not self.ANON_REDIRECT_DYNAMIC and not self.ANON_REDIRECT:
|
||||
self.ANON_REDIRECT_DYNAMIC = 1
|
||||
|
||||
self.CONFIG_VERSION = 22
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue