IpcServer: Fix off-by-one

このコミットが含まれているのは:
Albert S. 2021-12-26 18:35:55 +01:00
コミット 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)
{