Reader.prototype.unfavouriteBookmark = function (id, cb) {
  this.updateBookmark(id, {favorite: 0}, cb);
};