IpcServer: Fix off-by-one

Cette révision appartient à :
Albert S. 2021-12-26 18:35:55 +01:00
Parent 88ee2383f7
révision ba636bf0fc

Voir le fichier

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