From 2dfe62571a252f0d53e752a75fc884e5a487fb51 Mon Sep 17 00:00:00 2001 From: ElementG9 Date: Thu, 9 Jul 2020 10:59:18 -0600 Subject: [PATCH] Add a warning for server favicon --- src/net.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/net.rs b/src/net.rs index 2ed6c1c..c0b0c86 100644 --- a/src/net.rs +++ b/src/net.rs @@ -63,6 +63,7 @@ fn handle_client(t: TcpStream) -> std::io::Result<()> { // Read the request packet. let (_request_packet_len, _request_packet_id) = read_packet_header(&mut gc.stream)?; // Send the response packet. + log.warn("Server favicon not working correctly. Fix this in issue #4"); let mut base64_encoded_favicon = "".to_owned(); let a = || -> std::io::Result> { // Only call this if config.favicon is not None, or it'll panic.