From 07f5a46f682d32c5fbac466f858225736923600c Mon Sep 17 00:00:00 2001 From: zehkira <9485872-zehkira@users.noreply.gitlab.com> Date: Mon, 27 Oct 2025 09:39:24 +0100 Subject: [PATCH] Fix last playback position not being updated on play --- source/monophony/player.py | 1 + 1 file changed, 1 insertion(+) diff --git a/source/monophony/player.py b/source/monophony/player.py index 66ea270..4d3e2f7 100644 --- a/source/monophony/player.py +++ b/source/monophony/player.py @@ -392,6 +392,7 @@ class Player(GObject.Object): self.emit('progress-changed', 0) else: self._start_position = position + self._last_known_position = self._start_position self.emit('buffering-changed', 0) self._mpris_event_sender.emit_all() -- GitLab