Skip to content

Commit

Permalink
Use internal URL for song links
Browse files Browse the repository at this point in the history
  • Loading branch information
smores56 committed Oct 26, 2023
1 parent 062978a commit 6b15775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/song.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ impl SongLink {
if let Some(url) = &self.url {
Ok(url.clone())
} else if let Some(file) = &self.file {
Ok(format!("https://api.glubhub.org/files/{}", file))
Ok(format!("https://grease.fly.dev/files/{}", file))
} else {
Err("Song link is malformed and has no URL".into())
}
Expand Down

0 comments on commit 6b15775

Please sign in to comment.