Bug 1415656 - Fix android serializing dateAdded as a string in sync bookmark records r=Grisha

MozReview-Commit-ID: 1u9DeVvYwjY

--HG--
extra : rebase_source : 24a16261ff037929dc424ddd1c278030a2d09f25
This commit is contained in:
Thom Chiovoloni 2017-11-14 15:14:08 -05:00
Родитель f184932502
Коммит 91c3f631d6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -285,7 +285,7 @@ public class BookmarkRecord extends Record {
// creation date. `created` is not a NOT NULL field in the bookmarks table. Either way, it pays
// to be cautious here.
if (this.dateAdded != null) {
putPayload(payload, "dateAdded", Long.toString(this.dateAdded));
payload.put("dateAdded", this.dateAdded);
}
if (isFolder()) {