Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Fix AlertListener on IPv6-aware hosts #201

Merged
merged 3 commits into from
Nov 7, 2023
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 Contents/Code/plex_api_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
q = queue.Queue()


plex_url = 'http://localhost:32400'
# the explicit IPv4 address is used because `localhost` can resolve to ::1, which `websocket` rejects
plex_url = 'http://127.0.0.1:32400'
plex_token = os.environ.get('PLEXTOKEN')

plex_section_type_settings_map = dict(
Expand Down
Loading