Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit a2096d2

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)