Merge pull request #4176 from rokuz/pw-hotfix-cp

Fixed PW exception logging
This commit is contained in:
Vladimir Byko-Ianko 2016-08-29 14:06:58 +03:00 committed by GitHub
commit c19c7660d4

View file

@ -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;
}
}