Marko Dvornik

Results 8 comments of Marko Dvornik

I have the same issue. I've put `Push.setBadge(0);` on the client side and that seems to reset the counter, but not always. ``` if (Meteor.isCordova) { Push.setBadge(0); } ```

It looks like a FCM API credentials problem. I had the same error with GCM, migrating to [v3.0.3-rc.7] and FCM fixed it (using Server key (legacy token) and Sender ID)....

@v3rron no. **server:** ``` Meteor.methods({ serverNotification: function(text, title, subscribed_users) { var badge = 1 var push = Push.send({ from: 'push', title: title, text: text, badge: badge gcm: { style: 'inbox',...

AFAIK this feature is released with 3.4.0. #33 Se example [passing-custom-header-per-request](https://github.com/prisma-labs/graphql-request/blob/a8d99f5cdbe57786ecb8d99c88175599608d2fc6/examples/passing-custom-header-per-request.ts) However, using `{ request, gql }` directly instead of `{ GraphQLClient }` is not implemented.

Thank you for the response, much appreciated. > Just a quick correction before I continue, i18n code for slovenian is `si` (not `sk`). I didn't plan to implement my own...

This works for updating`theme.properties`. However, partial hack is still needed: insert a translation file `messages/messages_LANG.properties` to the `jar` package. Custome language is then recoginised inside the admin panel. A solution...

I agree. So far I'm stuck at getting jpegrescan to work on Ubuntu. This is what I did: ``` Shell sudo apt-get install imagemagick imagemagick-common sudo apt-get install libmagick++-dev libmagick++4...

Remote Oracle server doesn't have a `fdw_stage` schema. (We have Oracle Express version) Should I've had this schema on Postgres or on Oracle server? I'm sorry to ask such basic...