From 85613cfadca8aacc3f6f0e0d0429dc0292c357a7 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Fri, 17 Apr 2026 11:12:46 +0500 Subject: [PATCH] Don't use new Qt method Signed-off-by: Octol1ttle --- launcher/net/ChecksumValidator.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/launcher/net/ChecksumValidator.h b/launcher/net/ChecksumValidator.h index c0d5a56aa..c7906cc13 100644 --- a/launcher/net/ChecksumValidator.h +++ b/launcher/net/ChecksumValidator.h @@ -71,8 +71,7 @@ class ChecksumValidator : public Validator { auto validate(QNetworkReply& reply) -> bool override { if (!m_expected.isEmpty() && m_expected != hash()) { - qWarning() << "Checksum mismatch for URL:" << reply.url().toString() << "expected:" << m_expected << "got:" << hash() - << "algorithm:" << m_checksum.algorithm(); + qWarning() << "Checksum mismatch for URL:" << reply.url().toString() << "expected:" << m_expected << "got:" << hash(); return false; } return true;