From eaf4b8cb2bb64a9c658eab25c6c098c5dfb3bdc8 Mon Sep 17 00:00:00 2001 From: Kyler <59854022+KylerOlsen@users.noreply.github.com> Date: Thu, 30 May 2024 20:36:24 -0600 Subject: [PATCH] renamed main_icon.png to icon.png --- .gitignore | 2 +- src/status_handle.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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,