From 6a80928f108467d78c553acdb4661e4b6dd46877 Mon Sep 17 00:00:00 2001 From: Azalea Gui <22280294+hykilpikonna@users.noreply.github.com> Date: Thu, 21 Aug 2025 08:35:42 -0400 Subject: [PATCH] [F] Fix path --- crates/hyfetch/src/font_logo.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/hyfetch/src/font_logo.rs b/crates/hyfetch/src/font_logo.rs index 9f1998ef..59c14f47 100644 --- a/crates/hyfetch/src/font_logo.rs +++ b/crates/hyfetch/src/font_logo.rs @@ -6,7 +6,7 @@ use std::collections::HashMap; use std::fs::{self, File}; use std::io::{Read, Write}; -const FONT_LOGOS: &str = include_str!(concat!(env!("OUT_DIR"), "/data/font_logos.json")); +const FONT_LOGOS: &str = include_str!(concat!(env!("OUT_DIR"), "/font_logos.json")); pub fn get_font_logo(backend: Backend) -> Result { // Check if the cache file exists and return its contents if it does