alexjsp / homebridge-plex-sensors

Homebridge Sensors for Plex - a plugin for Homebridge to adds sensors triggered by Plex playbacks.
MIT License
110 stars 10 forks source link

plex sensor clears trigger even when ignore set to true #13

Closed pslogic closed 6 years ago

pslogic commented 6 years ago

here is the relevant snippet of my 'config.json'

        {
            "platform": "homebridge-plex-sensors.Plex",
            "logSeenPlayersAndUsers": true,
            "ignorePauseResume": true,
            "sensors": [
                {
                    "name": "Media Playing"
                }
            ]
        },

when using the web client or PMP, the trigger clears even though ignorePauseResume is set to true and a video is paused

is anyone else experiencing this?

pslogic commented 6 years ago

@alexp2ad can you advise some troubleshooting tips?

alexjsp commented 6 years ago

@pslogic The ignorePauseResume setting is a per-sensor setting, so for your config you'd set it like this:

        {
            "platform": "homebridge-plex-sensors.Plex",
            "logSeenPlayersAndUsers": true,
            "sensors": [
                {
                    "name": "Media Playing",
                    "ignorePauseResume": true
                }
            ]
        },

Closing this issue, but feel free to re-open if you see the same issue.

pslogic commented 6 years ago

thanks! 👍