From be6682e8c3920a41ea67616582744c132def0f97 Mon Sep 17 00:00:00 2001 From: Lyssa Date: Sun, 6 Apr 2025 19:33:14 +0400 Subject: [PATCH] readonly usage inconsistency --- LibTSforge/Common.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibTSforge/Common.cs b/LibTSforge/Common.cs index 4d61770..a45870d 100644 --- a/LibTSforge/Common.cs +++ b/LibTSforge/Common.cs @@ -81,7 +81,7 @@ namespace LibTSforge }; // 2^31 - 8 minutes - public static ulong TimerMax = (ulong)TimeSpan.FromMinutes(2147483640).Ticks; + public static readonly ulong TimerMax = (ulong)TimeSpan.FromMinutes(2147483640).Ticks; public static readonly string ZeroCID = new string('0', 48); }