Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion PyStageLinQ/PyStageLinQ.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class PyStageLinQ:
REQUESTSERVICEPORT = 0 # If set to anything but 0 other StageLinQ devices will try to request services at said port
StageLinQ_discovery_port = 51337

ANNOUNCE_IP = "169.254.255.255"
ANNOUNCE_IP = "255.255.255.255"

_loopcondition = True

Expand Down Expand Up @@ -236,6 +236,7 @@ async def _wait_for_exit(self):
for task in self.tasks.copy():
if task.done():
if task.exception() is not None:
self.stop()
raise task.exception()
return
await asyncio.sleep(1)
Expand Down