Report plugin as active even if failed

This is required for the plugin to report notifications.  This
behavior was changed in the main MO program at some point.
This commit is contained in:
LostDragonist
2019-10-06 17:20:53 -05:00
parent b8bcecbed4
commit 059dc8b9d2
+1 -1
View File
@@ -201,7 +201,7 @@ VersionInfo ProxyPython::version() const
bool ProxyPython::isActive() const
{
return m_LoadFailure == FAIL_NONE;
return m_LoadFailure == FAIL_NOTINIT;
}
QList<PluginSetting> ProxyPython::settings() const