1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 04:47:57 +01:00

":set urloperator=" will turn off splitting

used to go into infinite loop
This commit is contained in:
Conrad Irwin
2009-07-12 13:54:58 +01:00
parent 25f2695ee2
commit 4a70d7c097
2 changed files with 8 additions and 2 deletions

View File

@@ -625,7 +625,12 @@ const util = { //{{{
*/
stringToURLArray: function stringToURLArray(str)
{
let urls = util.splitLiteral(str, RegExp("\\s*" + options["urlseparator"] + "\\s*"));
let urls;
if (options["urlseparator"])
urls = util.splitLiteral(str, RegExp("\\s*" + options["urlseparator"] + "\\s*"));
else
urls = [str]
return urls.map(function (url) {
try