From b1270ec0f2a74bd9d4e8b6a438ec158fb46fd472 Mon Sep 17 00:00:00 2001 From: Digital Artifex <7929434+DigitalArtifex@users.noreply.github.com> Date: Wed, 10 Jun 2026 15:10:49 -0400 Subject: [PATCH] Uri should have been uuid --- KomplexHubPlugin/common/wallpapercache.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KomplexHubPlugin/common/wallpapercache.h b/KomplexHubPlugin/common/wallpapercache.h index 98156ff..91be911 100644 --- a/KomplexHubPlugin/common/wallpapercache.h +++ b/KomplexHubPlugin/common/wallpapercache.h @@ -39,7 +39,7 @@ Q_DECLARE_METATYPE(WallpaperInstallData) struct KOMPLEX_EXPORT WallpaperCache { - QString uri; + QString uuid; QString name; QString author; QString authorId; @@ -54,7 +54,7 @@ struct KOMPLEX_EXPORT WallpaperCache auto operator == (const WallpaperCache &other) const -> bool { return ( - other.uri == uri && + other.uuid == uuid && other.name == name && other.author == author && other.authorId == authorId &&