Skip to content

Commit

Permalink
🐛 Replace newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
malted committed Feb 10, 2024
1 parent 03dfc1e commit 22a141e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/content/content.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ fn img(malted_state: &State<RwLock<MaltedState>>, colour_scheme: &str) -> Redire
let team_id = env::var("mk_team_id").expect("mapkit team id");
let key_id = env::var("mk_key_id").expect("mapkit key id");
let private_key = env::var("mk_private_key").expect("mapkit private key");
let private_key = private_key.replace("\\n", "\n");

let s = malted_state.read();
let query = format!("{},{}", s.city, s.country);
Expand Down

0 comments on commit 22a141e

Please sign in to comment.