diff options
-rwxr-xr-x | twittperator.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/twittperator.js b/twittperator.js index 4ef5b65..ce7f7bb 100755 --- a/twittperator.js +++ b/twittperator.js @@ -1574,7 +1574,8 @@ function loadPlugins() { // {{{ if (args.bang) { let [subCmd] = findSubCommand(arg); - subCmd.action(args); + if (subCmd) + subCmd.action(args); } else { if (arg.length === 0) showFollowersStatus(); |