mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 22:22:27 +01:00
remove some unnecessary parentheses from bookmarks.getSearchEngines
This commit is contained in:
@@ -428,7 +428,7 @@ liberator.Bookmarks = function () //{{{
|
||||
var newAlias = alias;
|
||||
for (let j = 1; j <= 10; j++) // <=10 is intentional
|
||||
{
|
||||
if (!searchEngines.some(function (item) (item[0] == newAlias)))
|
||||
if (!searchEngines.some(function (item) item[0] == newAlias))
|
||||
break;
|
||||
|
||||
newAlias = alias + j;
|
||||
|
||||
Reference in New Issue
Block a user