fixed bug on opening notifications

This commit is contained in:
Christian Schneppe 2016-06-22 22:22:50 +02:00
parent 2d81d4bd11
commit 6330be2152

View file

@ -1325,7 +1325,7 @@ public class ConversationActivity extends XmppActivity
Bundle extras = getIntent().getExtras();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
if (extras != null) {
if (extras != null && extras.containsKey("FirstStart")) {
FirstStartTime = extras.getLong("FirstStart");
Log.d(Config.LOGTAG, "Get first start time from StartUI: " + FirstStartTime);
}