CommandHandler: Fixed typo in eca5dd0

This commit is contained in:
Brian Ferguson 2013-09-12 11:44:49 -06:00
parent e53b984bde
commit b0423cd3ff

View File

@ -719,7 +719,7 @@ void CommandHandler::DoManageBang(std::vector<std::wstring>& args, MeterWindow*
args[1].c_str(),
(argsSize == 3) ? args[2].c_str() : L"");
}
else if (argsSize == 1)
else if (argsSize <= 1)
{
DialogManage::Open(args.empty() ? L"" : args[0].c_str());
}