Mehdy Dara

Results 40 comments of Mehdy Dara

https://github.com/zckrs/cordova-plugin-push-notification/commit/80267eb34e263db9862c9b4402c22b32bd531b4b

> Add tricky support for Android5 > You should place a png file "notification_icon.png" in platforms/android/res/raw/notification_icon.png

And your image should respect format define by Google. http://developer.android.com/design/patterns/notifications.html#guidelines http://stackoverflow.com/questions/28387602/notification-bar-icon-turns-white-in-android-5-lollipop

Strange feature asked. But keep in your mind one Gulp plugin = one feature After gulp-rev you can use gulp-rename and gulp.dest to move your files

The bug not occurs each time. A reproduce code is complicated to provide but something similar is: ``` got(`http://${ip}/${uri}`, { method: 'PURGE', port: 8080, responseType: 'text', headers: { 'X-Forwarded-Proto': 'https',...

No, we use `got.extend` to add some default option but not on retry. ```js const rfGot = got.extend({ dnsCache: true, headers: { 'user-agent': `rf-got (${podNamespace} ${hostname})` }, timeout: 10000, responseType:...

@prithvijit-dasgupta we just used `method` option. @Giotino I can confirm the bug occur at 11.6.0. [diff 11.5.2...11.6.0](https://github.com/sindresorhus/got/compare/v11.5.2...v11.6.0)

I can reproduce when I upgrade got > v11.6.0

My problem seems to fix with v11.8.0. Maybe a bug inside one dependence.

Hi, In fact this issue already exists. The bug occur only for custom method. Our case is to invalidate a entry in Varnish cache by a PURGE http method. ```...