From 059dc8b9d2a722fed4ff4d482102839490cc0a08 Mon Sep 17 00:00:00 2001 From: LostDragonist Date: Sun, 6 Oct 2019 17:20:53 -0500 Subject: [PATCH] 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. --- src/proxy/proxypython.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proxy/proxypython.cpp b/src/proxy/proxypython.cpp index 57c4511..7eb074e 100644 --- a/src/proxy/proxypython.cpp +++ b/src/proxy/proxypython.cpp @@ -201,7 +201,7 @@ VersionInfo ProxyPython::version() const bool ProxyPython::isActive() const { - return m_LoadFailure == FAIL_NONE; + return m_LoadFailure == FAIL_NOTINIT; } QList ProxyPython::settings() const