Skip to content

Commit

Permalink
fix missing parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
kiekerjan committed Aug 10, 2024
1 parent 6458b48 commit 127cefa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion management/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def dns_get_zonefile(zone):
@authorized_personnel_only
def dns_get_advanced_dns_options():

return json_response({ "hiddenmaster_enabled": False, "hiddenmaster_selected": False, "short_ttl_selected" })
return json_response({ "hiddenmaster_enabled": False, "hiddenmaster_selected": False, "short_ttl_selected": False })

@app.route('/dns/advanced-dns', methods=['POST'])
@authorized_personnel_only
Expand Down

0 comments on commit 127cefa

Please sign in to comment.