fixed MPRIS Previous method according to the specs

Using conditional previous in the MPRIS interface introduced some bugs.
It was not possible to go to the previous track via plasma's MPRIS client.
This commit is contained in:
Martin Wagner 2022-04-16 20:47:59 +02:00
parent aacf27ccb0
commit 32893f7062
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ class MPRISInterface: # TODO emit Seeked if needed
self._client.next()
def Previous(self):
self._client.conditional_previous()
self._client.previous()
def Pause(self):
self._client.pause(1)