From 11dda58df697ea5739bcc5f4968d737e7823276a Mon Sep 17 00:00:00 2001 From: "jonathandicarlo@jonathan-dicarlos-macbook-pro.local" Date: Tue, 1 Jul 2008 10:35:15 -0700 Subject: [PATCH] Fixed yet another typo: this._sharing._share, not this._sharing.share. --- services/sync/modules/engines/bookmarks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/sync/modules/engines/bookmarks.js b/services/sync/modules/engines/bookmarks.js index 0df5e16eb25..6776284d5b6 100644 --- a/services/sync/modules/engines/bookmarks.js +++ b/services/sync/modules/engines/bookmarks.js @@ -676,7 +676,7 @@ BookmarksEngine.prototype = { _share: function BmkEngine__share(guid, username) { let self = yield; - this._sharing.share.async( this._sharing, self.cb, guid, username); + this._sharing._share.async( this._sharing, self.cb, guid, username); yield; self.done(true); },