fix: remove inaccurate virtual path (virtual://apps)

This commit is contained in:
2026-06-21 14:29:27 +02:00
parent 4596f8d708
commit 576ea2b84d
@@ -190,7 +190,7 @@ static void props_build_path(const FileManagerState* fm, int idx, char* out, int
} else if (type == FM_ENTRY_DRIVE) {
props_drive_path(fm->drive_indices[idx], out, out_len);
} else if (type == FM_ENTRY_APPS_ROOT) {
props_copy(out, out_len, "virtual://apps");
props_copy(out, out_len, "Apps");
} else if (type == FM_ENTRY_SYSTEM_CONFIGURATION_ROOT) {
props_copy(out, out_len, "virtual://system-configuration");
}