Skip to content

Commit

Permalink
Discovery for more service types
Browse files Browse the repository at this point in the history
  • Loading branch information
macdems committed Oct 8, 2021
1 parent 0e137d8 commit ae1aa92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
__version__ = '1.0.2'
__version__ = '1.0.3'

import philipstv.gui

Expand Down
2 changes: 1 addition & 1 deletion philipstv/api/discover.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __init__(self, on_add=None, on_remove=None, timeout=1.0):
def start(self):
self._zeroconf = Zeroconf()
listener = PhilipsTVListener(self.on_add, self.on_remove, self.timeout)
self._browser = ServiceBrowser(self._zeroconf, "_androidtvremote._tcp.local.", listener)
self._browser = ServiceBrowser(self._zeroconf, ["_androidtvremote._tcp.local.", "_androidtvremote2._tcp.local."], listener)

def stop(self):
if self._zeroconf is not None:
Expand Down

0 comments on commit ae1aa92

Please sign in to comment.