Procházet zdrojové kódy

Issue #497 - Playing songs from android app (#501)

* Issue #497 - Playing songs from android app

Implement the fix suggested by @Johannesd3

* Fix formatting
engineergreen před 4 roky
rodič
revize
f83915e212
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. 5 1
      connect/src/spirc.rs

+ 5 - 1
connect/src/spirc.rs

@@ -790,7 +790,11 @@ impl SpircTask {
             }
 
             MessageType::kMessageTypeNotify => {
-                if self.device.get_is_active() && frame.get_device_state().get_is_active() {
+                if self.device.get_is_active()
+                    && frame.get_device_state().get_is_active()
+                    && self.device.get_became_active_at()
+                        <= frame.get_device_state().get_became_active_at()
+                {
                     self.device.set_is_active(false);
                     self.state.set_status(PlayStatus::kPlayStatusStop);
                     self.player.stop();