Fixes minor refresh problem with single quotes.

This commit is contained in:
Lars Jung 2012-10-12 15:42:46 +02:00
parent 7be15da13a
commit 840363badb

View file

@ -7,8 +7,8 @@ modulejs.define('core/refresh', ['_', 'core/server', 'model/entry'], function (_
_.each(json.entries, function (jsonEntry) {
found[jsonEntry.absHref] = true;
Entry.get(jsonEntry.absHref, jsonEntry.time, jsonEntry.size, jsonEntry.status, jsonEntry.content);
var e = Entry.get(jsonEntry.absHref, jsonEntry.time, jsonEntry.size, jsonEntry.status, jsonEntry.content);
found[e.absHref] = true;
});
_.each(entry.content, function (e) {