IpcServer: Fix off-by-one

This commit is contained in:
Albert S. 2021-12-26 18:35:55 +01:00
parent 88ee2383f7
commit ba636bf0fc

View File

@ -73,7 +73,7 @@ void IpcServer::spawnerNewConnection()
stream << "invalid";
return;
}
docOpen(args[0], args[2].toInt());
docOpen(args[0], args[1].toInt());
}
if(command == FileOpen)
{