mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 736391 - Don't store places record. r=nalexander
This commit is contained in:
parent
ff0265ea28
commit
28c94725b6
@ -468,11 +468,16 @@ public class AndroidBrowserBookmarksRepositorySession extends AndroidBrowserRepo
|
||||
}
|
||||
BookmarkRecord bmk = (BookmarkRecord) record;
|
||||
|
||||
if (forbiddenGUID(bmk.guid)) {
|
||||
Logger.debug(LOG_TAG, "Ignoring forbidden record with guid: " + bmk.guid);
|
||||
return true;
|
||||
}
|
||||
|
||||
if (bmk.isBookmark() ||
|
||||
bmk.isFolder()) {
|
||||
return false;
|
||||
}
|
||||
Logger.info(LOG_TAG, "Ignoring record with guid: " + bmk.guid + " and type: " + bmk.type);
|
||||
Logger.debug(LOG_TAG, "Ignoring record with guid: " + bmk.guid + " and type: " + bmk.type);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user