diff options
-rwxr-xr-x | twittperator.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/twittperator.js b/twittperator.js index 5add7af..6cbe5b7 100755 --- a/twittperator.js +++ b/twittperator.js @@ -1439,7 +1439,8 @@ function loadPlugins() { // {{{ match: function (s) s.match(/^@/), command: ["@"], description: "Show mentions or follower tweets", - action: function (args) showTwitterMentions(args.literalArg), + action: function (args) + (args.literalArg ? showFollowersStatus(args.literalArg) : showTwitterMentions()), completer: Completers.name }, { |