mirror of
https://github.com/logos-co/logos-cpp-sdk.git
synced 2026-08-31 01:31:10 +00:00
fix return of getPluginMethods
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user