From f34ef445095c963d25e7abb6387dddb610493855 Mon Sep 17 00:00:00 2001 From: l1ttleO Date: Sun, 23 Oct 2022 14:44:07 +0500 Subject: [PATCH] Comply with code style regarding newlines and square brackets --- Boyfriend/EventHandler.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Boyfriend/EventHandler.cs b/Boyfriend/EventHandler.cs index 6ba2bdf..a67dde6 100644 --- a/Boyfriend/EventHandler.cs +++ b/Boyfriend/EventHandler.cs @@ -132,8 +132,7 @@ public static class EventHandler { scheduledEvent.StartTime.ToUnixTimeSeconds().ToString(), Utils.Wrap(scheduledEvent.Description)), true); } - if (eventConfig["EventEarlyNotificationOffset"] != "0") - { + if (eventConfig["EventEarlyNotificationOffset"] != "0") { _ = Utils.SendEarlyEventStartNotificationAsync(channel, scheduledEvent, Convert.ToInt32(eventConfig["EventEarlyNotificationOffset"])); } }