renamed main_icon.png to icon.png

This commit is contained in:
Kyler 2024-05-30 20:36:24 -06:00
parent 8919d0d83e
commit eaf4b8cb2b
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,6 +1,6 @@
/target /target
Cargo.lock Cargo.lock
test_server/* test_server/*
main_icon.png icon.png
motd.json motd.json
whitelist.json whitelist.json

View File

@ -115,7 +115,7 @@ fn motd() -> String {
} }
fn favicon() -> Option<String> { fn favicon() -> Option<String> {
let file_path = "./main_icon.png"; let file_path = "./icon.png";
let mut file = match File::open(file_path) { let mut file = match File::open(file_path) {
Ok(file) => file, Ok(file) => file,