1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 20:12:27 +01:00

Fix return signature of incrementURL.

This commit is contained in:
Doug Kearns
2008-12-23 22:30:55 +11:00
parent 99384f1dad
commit f859d73149

View File

@@ -132,7 +132,10 @@ const config = { //{{{
{
let matches = buffer.URL.match(/(.*?)(\d+)(\D*)$/);
if (!matches)
return liberator.beep();
{
liberator.beep();
return;
}
let [, pre, number, post] = matches;
let newNumber = parseInt(number, 10) + count;