Hi everybody,
I am trying to integrate Plex to my home assistant.
configuration.yaml
media_player:
- platform: plex
manually created plex.conf
{"<myip>:32400": {"token": "claim-<my-token>", "ssl": false, "verify": true}}
When I (re)start home assistant, I get a prompt to set up plex (which I should have already done via the plex.conf
, right?). When I click it, there is a popup with
(x) Plex Media Server
Enter the X-Plex-Token
X-Plex-Token
(input box) => my token
Use SSL
(input box) => false
Do not verify SSL
(input box) => true
When I click save, I’ll get Fehler beim Aufrufen des Service configurator/configure. invalid boolean value None
, which should roughly translate to error calling service configurator/configure. invalid boolean value None
. There is no “None” value. There is false
and then true
. When I enter something non-boolean in the Use SSL box, I’ll get Fehler beim Aufrufen des Service configurator/configure. invalid boolean value testing
.
However! No matter what I enter in the Do not verify SSL box, I’ll always get that invalid boolean value None error. It seems to me like no matter what I put there, it does not register but submit an empty box instead.
Has anybody else encountered this error and knows how to fix it? I initially set up Plex via the docs. I assumed manually creating the plex.conf
would mean that I wouldn’t even have to insert anything else via webGUI, but apparently I do. This is a bit confusing.
Thanks in advance for your help