Skip to content

Commit

Permalink
Version bump and bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
phin05 committed Feb 13, 2024
1 parent f0a3201 commit 5461ad2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .github/release-notes/v2.7.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
### Release Notes

* Added support for live TV (#72)
* Added support for dynamic button labels (#80)

### Installation Instructions

* [Regular](https://github.com/phin05/discord-rich-presence-plex/blob/v2.7.0/README.md#installation)
* [Docker](https://github.com/phin05/discord-rich-presence-plex/blob/v2.7.0/README.md#run-with-docker)
2 changes: 1 addition & 1 deletion config/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

name = "Discord Rich Presence for Plex"
version = "2.6.0"
version = "2.7.0"

plexClientID = "discord-rich-presence-plex"
discordClientID = "413407336082833418"
Expand Down
2 changes: 1 addition & 1 deletion core/plex.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def handleAlert(self, alert: models.plex.Alert) -> None:
stateStrings.append(item.title)
largeText = "Watching a TV show"
thumb = item.grandparentThumb
elif mediaType == "livetv":
elif mediaType == "live_episode":
title = shortTitle = item.grandparentTitle
if item.title != item.grandparentTitle:
stateStrings.append(item.title)
Expand Down

0 comments on commit 5461ad2

Please sign in to comment.