core/main/client/browser.js: Fix array unique function (#1966)

This commit is contained in:
bcoles
2020-07-10 14:29:13 +10:00
committed by GitHub
parent 7fa269ff81
commit f3313fde8a

View File

@@ -3919,8 +3919,8 @@ beef.browser = {
var results;
function unique(array) {
return $.grep(array, function(el, index) {
return index === $.inArray(el, array);
return $j.grep(array, function(el, index) {
return index === $j.inArray(el, array);
});
}