Skip to content

Commit

Permalink
fix(Netflix): set small image key to null when paused
Browse files Browse the repository at this point in the history
  • Loading branch information
iuriineves committed Dec 30, 2024
1 parent 567e1ae commit de7f3fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions websites/N/Netflix/presence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ presence.on("UpdateData", async () => {
? paused
? Assets.Pause
: Assets.Play
: "",
: null,
smallImageText: paused ? strings.pause : strings.play,
...(showTimestamp && {
startTimestamp: paused ? 0 : startTimestamp,
Expand Down Expand Up @@ -196,7 +196,7 @@ presence.on("UpdateData", async () => {
? paused
? Assets.Pause
: Assets.Play
: "",
: null,
smallImageText: paused ? strings.pause : strings.play,
...(showTimestamp && {
startTimestamp: paused ? 0 : startTimestamp,
Expand Down

0 comments on commit de7f3fa

Please sign in to comment.