aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhwspeedy <ns@bigbear.dk>2024-02-28 02:22:50 +0100
committerhwspeedy <ns@bigbear.dk>2024-02-28 02:22:50 +0100
commit968f3caf1b2b5a77229943ff76eb7f18778e277d (patch)
tree84ded46ec3b37477fc7a4ae07368369d70829d09
parentd470e875884707bbcaed91bf14c15d62e72658e6 (diff)
FIX missing hardinfo2 rename for settings
-rw-r--r--modules/computer/modules.c2
-rw-r--r--shell/callbacks.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/computer/modules.c b/modules/computer/modules.c
index 14028362..ae47947c 100644
--- a/modules/computer/modules.c
+++ b/modules/computer/modules.c
@@ -171,7 +171,7 @@ void kernel_module_icon_init(void)
sync_manager_add_entry(&sync_entry);
icon_json = g_build_filename(g_get_user_config_dir(),
- "hardinfo", "kernel-module-icons.json",
+ "hardinfo2", "kernel-module-icons.json",
NULL);
module_icons = g_hash_table_new(g_str_hash, g_str_equal);
diff --git a/shell/callbacks.c b/shell/callbacks.c
index b9c6252b..e7808471 100644
--- a/shell/callbacks.c
+++ b/shell/callbacks.c
@@ -66,7 +66,7 @@ void cb_sync_on_startup()
GKeyFile *key_file = g_key_file_new();
g_mkdir(g_get_user_config_dir(),0755);
- g_mkdir(g_build_filename(g_get_user_config_dir(), "hardinfo", NULL),0755);
+ g_mkdir(g_build_filename(g_get_user_config_dir(), "hardinfo2", NULL),0755);
gchar *conf_path = g_build_filename(g_get_user_config_dir(), "hardinfo2",
"settings.ini", NULL);