From 6b50b61a629efd99a0eb482222a4a2150cb5820b Mon Sep 17 00:00:00 2001 From: Dan Mills Date: Wed, 30 Jul 2008 22:52:49 -0700 Subject: [PATCH] fix snapshot typos in SyncEngine --- services/sync/modules/engines.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/sync/modules/engines.js b/services/sync/modules/engines.js index b20bce4f2bc..cbbf9c0c544 100644 --- a/services/sync/modules/engines.js +++ b/services/sync/modules/engines.js @@ -253,9 +253,9 @@ function SyncEngine() {} SyncEngine.prototype = { __proto__: new Engine(), - get snapshot() { + get _snapshot() { let snap = new SnapshotStore(this.name); - this.__defineGetter__("_snapshot", function() snapshot); + this.__defineGetter__("_snapshot", function() snap); return snap; },