From 8bf51eb169f6545f615a1f49b2a83987bf4e5c02 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 4 May 2025 16:37:25 -0400 Subject: [PATCH] Actually grab time from steam ticket response Oops! Still not fixed, though. --- launcher/src/steamapi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/steamapi.cpp b/launcher/src/steamapi.cpp index 80278b5..610cc38 100644 --- a/launcher/src/steamapi.cpp +++ b/launcher/src/steamapi.cpp @@ -47,5 +47,5 @@ QCoro::Task> SteamAPI::getTicket() const QJsonDocument document = QJsonDocument::fromJson(ticketBytes); - co_return encryptSteamTicket(document[QStringLiteral("ticket")].toString(), document[QStringLiteral("ticket")].toInteger()); + co_return encryptSteamTicket(document[QStringLiteral("ticket")].toString(), document[QStringLiteral("time")].toInteger()); }