Hi, I tried to play music with Airfoil for windows but it didn't connect. It seems like line 229 in airplayserver.py is the problem: if (host.split(".")) == 4: # ipv4 If I change it like this, it works: if len(host.split(".")) == 4: # ipv4
Hi,
I tried to play music with Airfoil for windows but it didn't connect.
It seems like line 229 in airplayserver.py is the problem:
if (host.split(".")) == 4: # ipv4
If I change it like this, it works:
if len(host.split(".")) == 4: # ipv4