From a1cb67c4ce53d1053a337630bea52870063baf73 Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Sun, 27 May 2018 23:32:18 +0100 Subject: [PATCH] Don't check changed passphrase if no passphrase set --- src/documents/checks.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/documents/checks.py b/src/documents/checks.py index 2f7ebd89e..37386f37c 100644 --- a/src/documents/checks.py +++ b/src/documents/checks.py @@ -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 "