From 2d50a75f2e3d4fdfb5abde92ed94eb3f317fb70a Mon Sep 17 00:00:00 2001 From: adam Date: Wed, 23 Apr 2025 12:11:48 -0400 Subject: [PATCH] something blocks. What, I don't know. --- ProtocolInterfaces/TwitchInterface/TwitchInterface.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ProtocolInterfaces/TwitchInterface/TwitchInterface.cs b/ProtocolInterfaces/TwitchInterface/TwitchInterface.cs index deb473a..5e581b0 100644 --- a/ProtocolInterfaces/TwitchInterface/TwitchInterface.cs +++ b/ProtocolInterfaces/TwitchInterface/TwitchInterface.cs @@ -142,8 +142,9 @@ public class TwitchInterface private Account UpsertAccount(string username, Channel inChannel) { - var acc = Rememberer.SearchAccount(ui => ui.ExternalId == username && ui.SeenInChannel.ExternalId == inChannel.ToString()); - Console.WriteLine($"upserting account, retrieved {acc?.Id}."); + Console.WriteLine($"upserting twitch account. username: {username}. inChannel: {inChannel?.Id}"); + var acc = Rememberer.SearchAccount(ui => ui.ExternalId == username && ui.SeenInChannel.ExternalId == inChannel.ExternalId.ToString()); + Console.WriteLine($"upserting twitch account, retrieved {acc?.Id}."); if (acc != null) { Console.WriteLine($"acc's usser: {acc.IsUser?.Id}");