diff --git a/librespot/zeroconf/Record.py b/librespot/zeroconf/Record.py index 91217e7..d03fc3a 100644 --- a/librespot/zeroconf/Record.py +++ b/librespot/zeroconf/Record.py @@ -34,5 +34,3 @@ class Record: start = i + 1 out += bytes([0]) return out, len(name) + 2 - - diff --git a/librespot/zeroconf/Zeroconf.py b/librespot/zeroconf/Zeroconf.py index bb88f44..4392531 100644 --- a/librespot/zeroconf/Zeroconf.py +++ b/librespot/zeroconf/Zeroconf.py @@ -16,9 +16,11 @@ class Zeroconf(Closeable): def __init__(self): try: - self.__BROADCAST4 = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + self.__BROADCAST4 = socket.socket(socket.AF_INET, + socket.SOCK_DGRAM) self.__BROADCAST4.connect(("224.0.0.251", 5353)) - self.__BROADCAST6 = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM) + self.__BROADCAST6 = socket.socket(socket.AF_INET6, + socket.SOCK_DGRAM) self.__BROADCAST6.connect(("FF02::FB", 5353)) except Exception as e: pass @@ -29,7 +31,9 @@ class Zeroconf(Closeable): def get_or_create_local_host_name() -> str: host = socket.gethostname() if host == "localhost": - host = base64.b64encode(random.randint(-9223372036854775808, 9223372036854775807)).decode() + ".local" + host = base64.b64encode( + random.randint(-9223372036854775808, + 9223372036854775807)).decode() + ".local" return host def set_use_ipv4(self, ipv4: bool) -> Zeroconf: