From f61d57f3a4eb42c33a79225c883201be8555d2c1 Mon Sep 17 00:00:00 2001 From: Brendan Enrick <2243498+benrick@users.noreply.github.com> Date: Thu, 11 Oct 2018 13:11:35 -0400 Subject: [PATCH] Default the current, latestFollowerDates --- TwitchLib.Api/Services/FollowerService.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/TwitchLib.Api/Services/FollowerService.cs b/TwitchLib.Api/Services/FollowerService.cs index be9afaa2..21891e9e 100644 --- a/TwitchLib.Api/Services/FollowerService.cs +++ b/TwitchLib.Api/Services/FollowerService.cs @@ -100,6 +100,11 @@ public void SetChannelsByName(List channelsToMonitor) { SetChannels(channelsToMonitor); + foreach (string channel in channelsToMonitor) + { + _lastFollowerDates[channel] = DateTime.UtcNow; + } + _monitor = NameBasedMonitor; }