diff --git a/.gitignore b/.gitignore index a6816e4..5f3cc39 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ /target Cargo.lock test_server/* -main_icon.png +icon.png motd.json whitelist.json diff --git a/src/status_handle.rs b/src/status_handle.rs index cca1115..7d288cc 100644 --- a/src/status_handle.rs +++ b/src/status_handle.rs @@ -115,7 +115,7 @@ fn motd() -> String { } fn favicon() -> Option { - let file_path = "./main_icon.png"; + let file_path = "./icon.png"; let mut file = match File::open(file_path) { Ok(file) => file,