diff options
-rw-r--r-- | src/mir_app/src/newplugins.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mir_app/src/newplugins.cpp b/src/mir_app/src/newplugins.cpp index 7e029b5479..2783e4bd3c 100644 --- a/src/mir_app/src/newplugins.cpp +++ b/src/mir_app/src/newplugins.cpp @@ -227,6 +227,9 @@ static bool validInterfaceList(const MUUID *piface) bool pluginEntry::checkAPI(wchar_t *plugin)
{
+ if (bHasBasicApi)
+ return true;
+
SetErrorMode(SEM_FAILCRITICALERRORS); // disable error messages
HINSTANCE h = LoadLibrary(plugin);
SetErrorMode(0); // reset the system default
|