We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f1e437 commit 58585f0Copy full SHA for 58585f0
handler/plex.go
@@ -327,6 +327,10 @@ func (c *PlexClient) syncTimelineWithPlaxt(r *http.Request) {
327
} else {
328
event = webhookEventPlay
329
}
330
+ case "buffering":
331
+ if progress >= watchedThreshold && session.status == sessionPlaying {
332
+ event = webhookEventScrobble
333
+ }
334
case "paused":
335
if progress >= watchedThreshold && session.status == sessionPlaying {
336
event = webhookEventScrobble
0 commit comments