mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2024-11-22 07:10:09 +01:00
Avoid error when AllowedIps is not defined
This commit is contained in:
parent
83cb8b7f03
commit
9021ca31af
@ -166,7 +166,7 @@ def get_conf_peers_data(config_name):
|
||||
|
||||
# Get allowed ip
|
||||
for i in conf_peer_data["Peers"]:
|
||||
db.update({"allowed_ip":i['AllowedIPs']}, peers.id == i["PublicKey"])
|
||||
db.update({"allowed_ip":i.get('AllowedIPs', None)}, peers.id == i["PublicKey"])
|
||||
|
||||
def getdb(config_name):
|
||||
get_conf_peers_data(config_name)
|
||||
|
Loading…
Reference in New Issue
Block a user