Skip to content

Commit

Permalink
fix: timestamp mismatch error in is_setup_wizard_complete call (frapp…
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmoysrt authored Jul 31, 2024
1 parent fdccd72 commit 971bb0f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion press/press/doctype/site/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -1479,7 +1479,11 @@ def is_setup_wizard_complete(self):
return

setup_complete = cint(value["setup_complete"])
self.setup_wizard_complete = setup_complete
if not setup_complete:
return False

self.reload()
self.setup_wizard_complete = 1

if self.team == "Administrator":
user = frappe.db.get_value("Account Request", self.account_request, "email")
Expand Down

0 comments on commit 971bb0f

Please sign in to comment.