set record ID in history store when creating a record

This commit is contained in:
Dan Mills 2009-01-27 17:08:47 -08:00
parent 03d78b3d84
commit 465c145c78

View File

@ -420,6 +420,7 @@ HistoryStore.prototype = {
createRecord: function HistStore_createRecord(guid) {
let foo = this._findURLByGUID(guid);
let record = new HistoryRec();
record.id = guid;
if (foo) {
record.histUri = foo.url;
record.title = foo.title;