fix return of getPluginMethods

This commit is contained in:
Iuri Matias
2025-12-02 13:21:51 -05:00
parent c754c83f27
commit 3c82d99f20
+6
View File
@@ -186,6 +186,12 @@ QVariant ModuleProxy::callRemoteMethod(const QString& authToken, const QString&
return QVariant();
}
// TODO: review this. note this method is part of ModuleProxy
if (methodName == "getPluginMethods" && args.isEmpty()) {
qDebug() << "ModuleProxy: Handling getPluginMethods() directly";
return QVariant(getPluginMethods());
}
qDebug() << "ModuleProxy: Auth token received:" << authToken;
qDebug() << "ModuleProxy: Calling method" << methodName << "on module" << m_module << "with args:" << args;