Skip to content

Commit

Permalink
nowplaying: use seeked signal to fix feeluown#668 (feeluown#671)
Browse files Browse the repository at this point in the history
  • Loading branch information
cosven committed Apr 17, 2023
1 parent e49f83c commit 18e84dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feeluown/nowplaying/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class FuoWindowsNowPlayingService(aionp.NowPlayingInterface):
def __init__(self, name, app_: 'ServerApp'):
self._app = app_
super(FuoWindowsNowPlayingService, self).__init__(name)
self._app.player.position_changed.connect(self.update_position)
self._app.player.seeked.connect(self.update_position)
self._app.player.state_changed.connect(self.update_playback_status)
self._app.player.metadata_changed.connect(self.update_song_props)
self._app.playlist.playback_mode_changed.connect(self.update_playback_mode)
Expand Down

0 comments on commit 18e84dd

Please sign in to comment.