Skip to content

Commit 4eebaf2

Browse files
committed
fix invalid syntax
1 parent 9f1c1a5 commit 4eebaf2

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/zsyncremotecontrolfileparser_p.cc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -415,11 +415,9 @@ void ZsyncRemoteControlFileParserPrivate::handleGithubMarkdownParsed(void) {
415415
/* Cut all ties. */
416416
disconnect(senderReply, SIGNAL(error(QNetworkReply::NetworkError)),
417417
this, SLOT(handleNetworkError(QNetworkReply::NetworkError)));
418-
disconnect(reply, &QNetworkReply::finished,
418+
disconnect(senderReply, &QNetworkReply::finished,
419419
this,
420-
&ZsyncRemoteControlFileParserPrivate::handleGithubMarkdownParsed,
421-
Qt::UniqueConnection);
422-
420+
&ZsyncRemoteControlFileParserPrivate::handleGithubMarkdownParsed);
423421
QByteArray html = senderReply->readAll();
424422
s_ReleaseNotes = QString::fromLatin1(html);
425423
senderReply->deleteLater();

0 commit comments

Comments
 (0)