From 1429ff1a78843391a4fe733666e83e4a410e9209 Mon Sep 17 00:00:00 2001 From: anekos Date: Thu, 4 Dec 2008 12:39:36 +0900 Subject: [PATCH] Fix: args is redefined and it makes the args undefined. --- liberator/content/liberator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liberator/content/liberator.js b/liberator/content/liberator.js index 1260e44e..9f6472d8 100644 --- a/liberator/content/liberator.js +++ b/liberator/content/liberator.js @@ -257,7 +257,7 @@ const liberator = (function () //{{{ "Execute the specified menu item from the command line", function (args) { - let args = args.string; + args = args.string; let items = getMenuItems(); if (!items.some(function (i) i.fullMenuPath == args))