diff --git a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp index 14810fb59a..abbf582b8c 100644 --- a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp +++ b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp @@ -774,7 +774,8 @@ struct DescriptionFactory } } - result = performOnDescription (desc); + if (desc.uid != 0) + result = performOnDescription (desc); if (result.failed()) break;