From 4ac77715ce2d1d5f737a423e4db682405aa02a1d Mon Sep 17 00:00:00 2001 From: s723138643 Date: Wed, 26 May 2021 21:38:58 +0800 Subject: [PATCH] fix set 'CanGoPrevious' error --- src/mpris_player.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpris_player.rs b/src/mpris_player.rs index e508cf5..92f29b7 100644 --- a/src/mpris_player.rs +++ b/src/mpris_player.rs @@ -305,7 +305,7 @@ impl MprisPlayer { if self.can_go_previous.get() != value { self.can_go_previous.set(value); self.property_changed( - "CanPrevious".to_string(), + "CanGoPrevious".to_string(), self.get_can_go_previous().unwrap(), ); } -- GitLab