Skip to content

Commit

Permalink
Changed TRACK_ID from base16 to base62 so that it is equal with the o…
Browse files Browse the repository at this point in the history
…fficial Spotify app
  • Loading branch information
StopMotionCuber committed Nov 4, 2018
1 parent 0331a7f commit 81e7c9b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/player_event_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ pub fn run_program_on_events(event: PlayerEvent, onevent: &str) -> io::Result<Ch
new_track_id,
} => {
env_vars.insert("PLAYER_EVENT", "change".to_string());
env_vars.insert("OLD_TRACK_ID", old_track_id.to_base16());
env_vars.insert("TRACK_ID", new_track_id.to_base16());
env_vars.insert("OLD_TRACK_ID", old_track_id.to_base62());
env_vars.insert("TRACK_ID", new_track_id.to_base62());
}
PlayerEvent::Started { track_id } => {
env_vars.insert("PLAYER_EVENT", "start".to_string());
env_vars.insert("TRACK_ID", track_id.to_base16());
env_vars.insert("TRACK_ID", track_id.to_base62());
}
PlayerEvent::Stopped { track_id } => {
env_vars.insert("PLAYER_EVENT", "stop".to_string());
env_vars.insert("TRACK_ID", track_id.to_base16());
env_vars.insert("TRACK_ID", track_id.to_base62());
}
}
run_program(onevent, env_vars)
Expand Down

0 comments on commit 81e7c9b

Please sign in to comment.