Good work on the package and plugins architecture ( :
Currently i tried:
- login ( worked perfectly )
- subscriptions ( worked perfectly )
But funny enough, when i tried to do a simple call to some method the returned promise never resolves.
I investigated a bit of the source code ( specifically the apply method ) and turns out:
methodId value is 0
onMethodResult is never called
Then basically the promise hangs forever and never resolves.
I have some Meteor "native code" using that same Meteor.method and it works normally, so i can confirm it's not a problem on the meteor side.
I'll let you know if I find any other clues about what might be causing that problem.
Good work on the package and plugins architecture ( :
Currently i tried:
But funny enough, when i tried to do a simple call to some method the returned promise never resolves.
I investigated a bit of the source code ( specifically the apply method ) and turns out:
methodIdvalue is0onMethodResultis never calledThen basically the promise hangs forever and never resolves.
I have some Meteor "native code" using that same
Meteor.methodand it works normally, so i can confirm it's not a problem on the meteor side.I'll let you know if I find any other clues about what might be causing that problem.