Skip to content

Commit

Permalink
Merge pull request #1267 from acolombier/fix/update-spotify-version
Browse files Browse the repository at this point in the history
fix: change spotify version needed in clientoken to use semantic format
  • Loading branch information
roderickvd authored Mar 31, 2024
2 parents 27b8a6d + d881f46 commit 9929635
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ pub const BUILD_ID: &str = env!("LIBRESPOT_BUILD_ID");
/// The protocol version of the Spotify desktop client.
pub const SPOTIFY_VERSION: u64 = 117300517;

/// The semantic version of the Spotify desktop client.
pub const SPOTIFY_SEMANTIC_VERSION: &str = "1.2.31.1205.g4d59ad7c";

/// The protocol version of the Spotify mobile app.
pub const SPOTIFY_MOBILE_VERSION: &str = "8.6.84";

Expand All @@ -28,6 +31,6 @@ pub const FALLBACK_USER_AGENT: &str = "Spotify/117300517 Linux/0 (librespot)";
pub fn spotify_version() -> String {
match std::env::consts::OS {
"android" | "ios" => SPOTIFY_MOBILE_VERSION.to_owned(),
_ => SPOTIFY_VERSION.to_string(),
_ => SPOTIFY_SEMANTIC_VERSION.to_string(),
}
}

0 comments on commit 9929635

Please sign in to comment.