Don't check changed passphrase if no passphrase set

This commit is contained in:
Daniel Quinn 2018-05-27 23:32:18 +01:00
parent c37f642cff
commit a1cb67c4ce

View File

@ -1,3 +1,4 @@
from django.conf import settings
from django.core.checks import Warning, register
from django.db.utils import OperationalError
@ -8,6 +9,9 @@ def changed_password_check(app_configs, **kwargs):
from documents.models import Document
from paperless.db import GnuPG
if not settings.PASSPHRASE:
return []
warning = (
"At least one document:\n\n {}\n\nin your data store was encrypted "
"with a password other than the one currently\nin use. This means "