Bug 722184 - Add bookmark keywords support to databases. r=mfinkle f=wesj (followup patch)

This commit is contained in:
Brian Nicholson 2012-02-07 20:08:46 -08:00
parent 618f41f068
commit 87b985c04b

View File

@ -392,10 +392,10 @@ public class LocalBrowserDB implements BrowserDB.BrowserDBIface {
values.put(Bookmarks.URL, uri);
values.put(Bookmarks.KEYWORD, keyword);
int updated = cr.update(appendProfile(Bookmarks.CONTENT_URI),
values,
Bookmarks.URL + " = ?",
new String[] { oldUri });
cr.update(appendProfile(Bookmarks.CONTENT_URI),
values,
Bookmarks.URL + " = ?",
new String[] { oldUri });
}
public BitmapDrawable getFaviconForUrl(ContentResolver cr, String uri) {