Fixed yet another typo: this._sharing._share, not this._sharing.share.

This commit is contained in:
jonathandicarlo@jonathan-dicarlos-macbook-pro.local 2008-07-01 10:35:15 -07:00
parent b7f7372c9f
commit 11dda58df6

View File

@ -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);
},