diff --git a/android/src/com/mapswithme/util/statistics/PushwooshHelper.java b/android/src/com/mapswithme/util/statistics/PushwooshHelper.java index bf4f27deb5..7f33a59cf7 100644 --- a/android/src/com/mapswithme/util/statistics/PushwooshHelper.java +++ b/android/src/com/mapswithme/util/statistics/PushwooshHelper.java @@ -129,7 +129,10 @@ public final class PushwooshHelper implements SendPushTagsCallBack synchronized (mSyncObject) { if (e != null) - Log.e("Pushwoosh", e.getLocalizedMessage()); + { + String msg = e.getLocalizedMessage(); + Log.e("Pushwoosh", msg != null ? msg : "onSentTagsError"); + } mTask = null; } }