Fix vlc is_playing

This commit is contained in:
PapaTutuWawa 2025-01-12 22:32:37 +01:00
parent 597a10543d
commit ddb2730249

View File

@ -77,7 +77,7 @@ class VlcProgram(Program):
return self._process is not None and self._process.returncode is None return self._process is not None and self._process.returncode is None
def is_playing(self) -> bool: def is_playing(self) -> bool:
return self.get_player_info().is_playing return self.get_player_info().playing
def resume(self): def resume(self):
self.__vlc_command("pl_pause") self.__vlc_command("pl_pause")