mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-08 15:55:31 +01:00
Allow notify user if update checking not explicitly set
This commit is contained in:
parent
a4e7877033
commit
440467e304
5 changed files with 51 additions and 19 deletions
|
|
@ -567,4 +567,6 @@ if os.getenv("PAPERLESS_IGNORE_DATES", ""):
|
|||
if d:
|
||||
IGNORE_DATES.add(d.date())
|
||||
|
||||
ENABLE_UPDATE_CHECK = __get_boolean("PAPERLESS_ENABLE_UPDATE_CHECK", "true")
|
||||
ENABLE_UPDATE_CHECK = os.getenv("PAPERLESS_ENABLE_UPDATE_CHECK", "default")
|
||||
if ENABLE_UPDATE_CHECK != "default":
|
||||
ENABLE_UPDATE_CHECK = __get_boolean("PAPERLESS_ENABLE_UPDATE_CHECK", "true")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue