Skip to content

Commit

Permalink
Wrong time stamp (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
SalavatR committed Jun 9, 2022
1 parent a5ce233 commit 7bd6ed9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extension-push/src/java/com/defold/push/Push.java
Expand Up @@ -271,7 +271,8 @@ private Notification getLocalNotification(final Context appContext, Bundle extra
.setContentTitle(extras.getString("title"))
.setContentText(extras.getString("message"))
.setContentIntent(contentIntent)
.setPriority(extras.getInt("priority"));
.setPriority(extras.getInt("priority"))
.setWhen(extras.getLong("timestamp"));

builder.getExtras().putInt("uid", uid);

Expand Down

0 comments on commit 7bd6ed9

Please sign in to comment.