From bc792910e64649bbf0ff4a08890b600d238d6933 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 21 Jan 2023 06:42:53 -0500 Subject: [PATCH] If plugin slug in VCV account is not found in manifests, skip plugin silently. --- src/library.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/library.cpp b/src/library.cpp index 7221d23b..c5691f52 100644 --- a/src/library.cpp +++ b/src/library.cpp @@ -226,7 +226,7 @@ void checkUpdates() { // Get plugin manifest json_t* manifestJ = json_object_get(manifestsJ, pluginSlug.c_str()); if (!manifestJ) { - WARN("VCV account has plugin %s but no manifest was found", pluginSlug.c_str()); + // Skip plugin silently continue; }