@@ -80,7 +80,7 @@ def peer_present(name, interface, endpoint=None, persistent_keepalive=None, | |||
ret['result'] = True | |||
return ret | |||
if show.get('endpoint') and endpoint and show.get('endpoint') != endpoint: | |||
if endpoint and show.get('endpoint', '') != endpoint: | |||
__salt__['wg.set'](interface, peer=name, endpoint=endpoint) | |||
ret['changes']['endpoint'] = dict( | |||
old=show.get('endpoint'), new=endpoint) |