mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-23 06:22:24 +01:00
Fix crash on existing GitHub App Integration
This commit is contained in:
parent
19a626e237
commit
a15f1ac223
@ -235,7 +235,8 @@ def handleMakeWebhook(gh_user, gh_repo, package, oauth, event, token):
|
||||
return False
|
||||
|
||||
for hook in r.json():
|
||||
if hook["config"]["url"] == data["config"]["url"]:
|
||||
if hook.get("config") and hook["config"].get("url") and \
|
||||
hook["config"]["url"] == data["config"]["url"]:
|
||||
flash("Failed to create webhook, as it already exists", "danger")
|
||||
return False
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user