diff --git a/mopidy/zeroconf.py b/mopidy/zeroconf.py index fff6ff27..cdd84792 100644 --- a/mopidy/zeroconf.py +++ b/mopidy/zeroconf.py @@ -17,7 +17,10 @@ _AVAHI_PUBLISHFLAGS_NONE = 0 def _is_loopback_address(host): - return host.startswith('127.') or host == '::1' + return ( + host.startswith('127.') or + host.startswith('::ffff:127.') or + host == '::1') def _convert_text_to_dbus_bytes(text):