Explorar o código

fix podcast on Spotify - release

philippe44 hai 1 ano
pai
achega
105e800cc1
Modificáronse 1 ficheiros con 1 adicións e 5 borrados
  1. 1 5
      components/spotify/cspot/src/TrackReference.cpp

+ 1 - 5
components/spotify/cspot/src/TrackReference.cpp

@@ -24,11 +24,7 @@ void TrackReference::decodeURI() {
       gid = bigNumAdd(gid, d);
     }
 
-#if __cplusplus >= 202002L
-    if (uri.starts_with("episode")) {
-#else
-    if (uri.find("episode") == 0) {
-#endif
+    if (uri.find("episode:") != std::string::npos) {
       type = Type::EPISODE;
     }
   }