From 52b5db8ae738c9d4046a357d8883a8d473efc538 Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Mon, 7 Feb 2022 00:13:33 -0800 Subject: [PATCH] Update EpicPlatformManager.cs --- EpicRerouter/ExeSide/EpicPlatformManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EpicRerouter/ExeSide/EpicPlatformManager.cs b/EpicRerouter/ExeSide/EpicPlatformManager.cs index 77361f6e..5819369a 100644 --- a/EpicRerouter/ExeSide/EpicPlatformManager.cs +++ b/EpicRerouter/ExeSide/EpicPlatformManager.cs @@ -116,7 +116,8 @@ namespace EpicRerouter.ExeSide if (loginCallbackInfo.ResultCode == Result.Success) { LocalUserId = loginCallbackInfo.LocalUserId; - Console.WriteLine($"[EOS SDK] login success! user ID: {LocalUserId}"); + LocalUserId.ToString(out var s); + Console.WriteLine($"[EOS SDK] login success! user ID: {s}"); OnAuthSuccess.Invoke(); return; }