Skip to content

Commit

Permalink
Only show deprec warn on export if ADM Exp Src plugins present
Browse files Browse the repository at this point in the history
Previous check always returned true, so was always shown
  • Loading branch information
firthm01 committed Feb 28, 2024
1 parent 9fbd11e commit 38f42b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ std::vector<std::string> AdmExportHandler::generateExportWarningStrings()
auto admExportSources = getAdmExportSources();
std::vector<std::string> msgs;

if (admExportVstSources) {
if (admExportVstSources && admExportVstSources->getAllFoundVsts()->size() > 0) {
msgs.push_back(pluginDeprecationMessage);
}

Expand Down

0 comments on commit 38f42b9

Please sign in to comment.