Merge pull request #3127 from OverMighty/develop

fix: add support for args with spaces to MultiMC::messageReceived()
This commit is contained in:
Petr Mrázek 2020-05-29 01:55:27 +02:00 committed by GitHub
commit c4779e5a35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -888,8 +888,7 @@ void MultiMC::messageReceived(const QString& message)
return;
}
QStringList args = message.split(' ');
QString command = args.takeFirst();
QString command = message.section(' ', 0, 0);
if(command == "activate")
{
@ -897,21 +896,23 @@ void MultiMC::messageReceived(const QString& message)
}
else if(command == "import")
{
if(args.isEmpty())
QString arg = message.section(' ', 1);
if(arg.isEmpty())
{
qWarning() << "Received" << command << "message without a zip path/URL.";
return;
}
m_mainWindow->droppedURLs({ QUrl(args.takeFirst()) });
m_mainWindow->droppedURLs({ QUrl(arg) });
}
else if(command == "launch")
{
if(args.isEmpty())
QString arg = message.section(' ', 1);
if(arg.isEmpty())
{
qWarning() << "Received" << command << "message without an instance ID.";
return;
}
auto inst = instances()->getInstanceById(args.takeFirst());
auto inst = instances()->getInstanceById(arg);
if(inst)
{
launch(inst, true, nullptr);