Skip to content

Commit a2096d2

Browse files
committed
Fix is_playing() always returning True
Fix is_playing() always returning True
1 parent a7cff74 commit a2096d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wavelink/player.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def is_connected(self) -> bool:
281281

282282
def is_playing(self) -> bool:
283283
"""Whether the Player is currently playing a track."""
284-
return self.current is not None
284+
return self.current is not None and not self._paused
285285

286286
def is_paused(self) -> bool:
287287
"""Whether the Player is currently paused."""

0 commit comments

Comments
 (0)