From 372d1bad2f16114af380c776f35009cf09420478 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Thu, 22 Dec 2022 02:03:54 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Remove=20LoginReply=20expiresAt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Pal.Common/Protos/account.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pal.Common/Protos/account.proto b/Pal.Common/Protos/account.proto index 81be76d..cb2d43f 100644 --- a/Pal.Common/Protos/account.proto +++ b/Pal.Common/Protos/account.proto @@ -42,7 +42,7 @@ message LoginRequest { message LoginReply { bool success = 1; string authToken = 2; - google.protobuf.Timestamp expiresAt = 3 [deprecated = true]; + reserved 3; // expiresAt LoginError error = 4; }