Merge pull request #30 from bmourat/fix/android-push-module-crash

Fix crash on start with push module
This commit is contained in:
Patrick Nikoletich 2018-04-26 01:47:43 -04:00 коммит произвёл GitHub
Родитель 3bca485705 b233f51a56
Коммит 0b8f8911f9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -26,7 +26,7 @@ public class AppCenterPushPlugin extends CordovaPlugin {
// For some reason Cordova reads SENDER_ID preference as double.
// Because of this Pushes does not work properly,
// as workaround SENDER_ID value should be wrapped by single quotes.
String senderId = webView.getPreferences().getString(SENDER_ID, null).replace("'", "");
String senderId = webView.getPreferences().getString(SENDER_ID, "").replace("'", "");
Push.setSenderId(senderId);
listener = new CordovaPushListener();