From 1778d0d5735deda4d1b83f64f267a90ea37c77cd Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 26 Apr 2026 08:12:59 -0500 Subject: [PATCH] Go back to direct OCIS linking due to increased length limits in chat so it should work now --- KfChatDotNetBot/Commands/MemeCommands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KfChatDotNetBot/Commands/MemeCommands.cs b/KfChatDotNetBot/Commands/MemeCommands.cs index 98d54ba..55417e8 100644 --- a/KfChatDotNetBot/Commands/MemeCommands.cs +++ b/KfChatDotNetBot/Commands/MemeCommands.cs @@ -224,8 +224,8 @@ public class NextCourtHearingCommand : ICommand var timespan = hearing.Time - DateTimeOffset.UtcNow; if (timespan.TotalSeconds < 0) continue; // Already passed result += - //$"{i}: [url=https://eapps.courts.state.va.us/ocis/details;fromOcis=true;fullcaseNumber=109{hearing.CaseNumber.Replace("-", string.Empty)}]{hearing.CaseNumber}[/url] " + - $"{i}: {hearing.CaseNumber} " + + $"{i}: [url=https://eapps.courts.state.va.us/ocis/details;fromOcis=true;fullcaseNumber=109{hearing.CaseNumber.Replace("-", string.Empty)}]{hearing.CaseNumber}[/url] " + + //$"{i}: {hearing.CaseNumber} " + $"{hearing.Description} will be heard in {timespan.Humanize(precision: 10, minUnit: TimeUnit.Second, maxUnit: TimeUnit.Year)}\r\n"; } return result.Trim();