fixed bug on opening notifications
This commit is contained in:
parent
2d81d4bd11
commit
6330be2152
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Reference in a new issue