Bug 933775 - Fix download timestamp by changing 'when' parameter to contain time since epoch. r=wesj

This commit is contained in:
Gian-Carlo Pascutto 2013-12-04 13:31:00 +01:00
parent b47de94395
commit 4086d32015

View File

@ -237,7 +237,7 @@ public final class NotificationHelper implements GeckoEventListener {
builder.setOngoing(ongoing);
if (message.has(WHEN_ATTR)) {
int when = message.optInt(WHEN_ATTR);
long when = message.optLong(WHEN_ATTR);
builder.setWhen(when);
}