Update sync clear history function to use new clear() API call.

This commit is contained in:
Sean Greenslade 2019-05-11 18:12:11 -07:00 committed by Roy Tam
commit 84bfab4f70

View file

@ -346,7 +346,7 @@ HistoryStore.prototype = {
},
wipe: function HistStore_wipe() {
PlacesUtils.history.removeAllPages();
PlacesUtils.history.clear();
}
};