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 29, 2024
1 parent 2aeee20 commit b5026c6
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 b5026c6

Please sign in to comment.