···3030 // update the homebrew database and get a connection
3131 homebrew_database_updater(HB_DATABASE, &homebrew_token).polar_unwrap("", true);
3232 let homebrew_db = Connection::open(HB_DATABASE).polar_unwrap("Failed to open SQLite connection to homebrew database!", true);
3333- let homebrew_db = Arc::new( Mutex::new(homebrew_db));
3333+ let homebrew_db = Arc::new( Mutex::new(homebrew_db) );
34343535 let (page_count, issues_count): (u64, u64) = networking::github_get_repo_info(&github_token);
3636···44444545 let old_game_skips: Arc< Vec<u64> > = {
4646 match fs::read_to_string(GAME_SKIPS_DATABASE) {
4747- Ok(string) => {
4848-4949- Arc::new(serde_json::from_str(&string).unwrap_or_default())
5050-5151- }
4747+ Ok(string) => Arc::new(serde_json::from_str(&string).unwrap_or_default()),
5248 Err(_) => Arc::new(vec![])
5349 }
5450 };
···125121126122127123 // saves databases
128128- let temp_string = serde_json::to_string_pretty(&issues).polar_unwrap("error making issues into a json!", true);
124124+ let temp_string = serde_json::to_string(&issues).polar_unwrap("error making issues into a json!", true);
129125 let temp_path = format!("{database_path}/database.json");
130126 fs::write(temp_path, temp_string).polar_unwrap("Error saving the \"database\" file!", true);
131127132132- let temp_string = serde_json::to_string_pretty(&game_skips).polar_unwrap("error making game_skips into a json!", true);
128128+ let temp_string = serde_json::to_string(&game_skips).polar_unwrap("error making game_skips into a json!", true);
133129 fs::write(GAME_SKIPS_DATABASE, temp_string).polar_unwrap("Error saving the \"game_skips\" file!", true);
134130135131 println_green!("dun! {} issues processed", issues.len());