IpcServer: Fix off-by-one

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

파일 보기

@ -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)
{