Aapo Kuuselo
Aapo Kuuselo
Yeah I'm having the same issue. Did anyone find a solution for this?
I would love this feature as well
This has not been fixed and is still an issue. I have the exact same issue with version 0.2.5
Okay I think I found the bug in `model.js` line `458`: https://github.com/baugarten/node-restful/blob/master/lib/model.js#L458 This is the current code: ``` js if (props[key]) { return props[key](val, quer); } ``` But it probably...
I think the version number just hasn't been bumped (and updated to npm). But you can get the bleeding edge version by doing an npm install straight from the github...
I basically just check if the function has already been called and only react to it once. Use for instance a timeout to set a flag for say a 1000ms...
Sorry no, I'm not a dev of this repo. I did take a quick peek at the Obj C code but didn't see anything obviously wrong there.
Yeah, I was running into the exac same issue. What I did was, I aborted (http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Request.html#abort-property) the long poll request before exiting the app. Here's some pseudo code for a...