Skip to content

Commit

Permalink
fix(MprisPlayer): await PreviousAsync() in previous_async()
Browse files Browse the repository at this point in the history
  • Loading branch information
linkfrg committed Mar 6, 2025
1 parent 21f3771 commit 08dbca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ignis/services/mpris/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ async def previous_async(self) -> None:
"""
Asynchronous version of :func:`previous`.
"""
self.__player_proxy.PreviousAsync()
await self.__player_proxy.PreviousAsync()

def pause(self) -> None:
"""
Expand Down

0 comments on commit 08dbca6

Please sign in to comment.