Howon Song

Results 12 comments of Howon Song

It seems that if I invoke `raix:push-update` manually with custom appName, it works. How do I debug why the method isn't getting called?

@raix I confirmed that `Push.addListener('token')` gets triggered. Isn't it same as `Push.on`?

This is my temporary solution.. ``` Meteor.startup(function() { if (Meteor.isClient) { console.log("new version"); Push.addListener('token', function (token) { PUSH_TOKEN = token; Meteor.call('raix:push-update', { appName: "Toaster", token: token, userId: "" }); });...

Thanks for being so responsive. I will check it as soon as I get home and let you know.

@raix Unfortunately, that didn't solve the problem. It seems it still returns an empty array if I don't call `raix:push-update'` manually. EDIT: even worse, even the fix I used to...

@lynndylanhurley I also have the same problem. It seems that after a successful `Auth.emailSignIn` the subsequent calls don't have the appropriate headers and get returned `401`. ``` javascript $(function() {...

Both would be nice. In Metamask, you can check the `accounts` array and see if it's empty to know if the user has unlocked their wallet. Using this, people can...

@diasbruno is there any other reason why setting both `.ReactModal__Body--open` and `.ReactModal__Html--open` to hide overflow not prevent the scrolling? I confirmed that the classes and styles are added but it...

@evollu it seems about half the time, the device token is missing. Both on initialize and refreshToken. Have you encountered this before?