Jelajahi Sumber

Add 5xx error panic

Sasha Hilton 7 tahun lalu
induk
melakukan
96124c5e18
2 mengubah file dengan 10 tambahan dan 8 penghapusan
  1. 7 7
      Cargo.lock
  2. 3 1
      core/src/mercury/mod.rs

+ 7 - 7
Cargo.lock

@@ -1,10 +1,3 @@
-[root]
-name = "librespot-protocol"
-version = "0.1.0"
-dependencies = [
- "protobuf 1.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
 [[package]]
 name = "aho-corasick"
 version = "0.6.4"
@@ -506,6 +499,13 @@ dependencies = [
  "portaudio-rs 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
 ]
 
+[[package]]
+name = "librespot-protocol"
+version = "0.1.0"
+dependencies = [
+ "protobuf 1.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
 [[package]]
 name = "linear-map"
 version = "1.2.0"

+ 3 - 1
core/src/mercury/mod.rs

@@ -189,7 +189,9 @@ impl MercuryManager {
             payload: pending.parts,
         };
 
-        if response.status_code >= 400 {
+        if response.status_code >= 500 {
+            panic!("Spotify servers returned an error. Restart librespot.");
+        } else if response.status_code >= 400 {
             warn!("error {} for uri {}", response.status_code, &response.uri);
             if let Some(cb) = pending.callback {
                 let _ = cb.send(Err(MercuryError));