Skip to content

Commit

Permalink
fix: default api base url should be http
Browse files Browse the repository at this point in the history
  • Loading branch information
Yesterday17 committed Apr 20, 2024
1 parent 16c8671 commit a15f0f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,5 +151,5 @@ pub fn set_base_url(base_url: String) {
pub(crate) fn get_base_url() -> &'static str {
BASE_URL
.get()
.map_or_else(|| "https://musicbrainz.org/ws/2", String::as_str)
.map_or_else(|| "http://musicbrainz.org/ws/2", String::as_str)
}

0 comments on commit a15f0f7

Please sign in to comment.