From 6307656e9757270529ed76fbde1e503edcac099e Mon Sep 17 00:00:00 2001 From: Khanh Ngo Date: Mon, 4 Jul 2016 22:12:24 +0700 Subject: [PATCH] Fix dnssec update when reload the domain information. --- app/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models.py b/app/models.py index 7170916..307c610 100644 --- a/app/models.py +++ b/app/models.py @@ -500,7 +500,7 @@ class Domain(db.Model): d.serial = data['serial'] d.notified_serial = data['notified_serial'] d.last_check = 1 if data['last_check'] else 0 - d.dnssec = data['dnssec'] + d.dnssec = 1 if data['dnssec'] else 0 changed = True else: