coding style cleanup

This commit is contained in:
Dima Krasner 2023-11-07 08:27:00 +02:00 committed by Felix Queißner
parent e18f9e4ecb
commit b84f4ba5dd
1 changed files with 3 additions and 1 deletions

View File

@ -38,7 +38,9 @@ bool GuppyClient::startRequest(const QUrl &url, RequestOptions options)
this->requested_url = url;
this->was_cancelled = false;
this->prev_seq = this->first_seq = this->last_seq = 0;
this->prev_seq = 0;
this->first_seq = 0;
this->last_seq = 0;
this->socket.connectToHost(url.host(), url.port(6775));
return true;