mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Handle the possilbe case of splitting on an empty string returning a list with an empty string
This commit is contained in:
parent
b470fc0140
commit
f100198a8a
@ -84,7 +84,7 @@ def __get_list(
|
||||
string, or the default if the key does not exist
|
||||
"""
|
||||
if key in os.environ:
|
||||
return os.environ[key].split(sep)
|
||||
return list(filter(None, os.environ[key].split(sep)))
|
||||
elif default is not None:
|
||||
return default
|
||||
else:
|
||||
|
Loading…
x
Reference in New Issue
Block a user