1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-10 08:04:15 +01:00

Fix possible infinite loop.

This commit is contained in:
Kris Maglione
2010-10-13 16:51:29 -04:00
parent 16b3657042
commit 9e42f55fa1

View File

@@ -860,7 +860,7 @@ const Util = Module("Util", {
cont = false;
str = str.replace(resep, function (match, before) {
results.push(before);
cont = true;
cont = match !== "";
return "";
});
}