Browse Source

If plugin slug in VCV account is not found in manifests, skip plugin silently.

tags/v2.2.3
Andrew Belt 1 year ago
parent
commit
bc792910e6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/library.cpp

+ 1
- 1
src/library.cpp View File

@@ -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;
}



Loading…
Cancel
Save