fix warnings

This commit is contained in:
Sachin 2025-05-25 13:17:37 +05:30
parent c586dd700c
commit 3508d429ee
2 changed files with 2 additions and 2 deletions

View file

@ -236,7 +236,7 @@ internal class CacheManager: IDisposable
RebuildIndexes(); RebuildIndexes();
_lastUpdateTime = DateTime.Now.AddSeconds(-1); _lastUpdateTime = DateTime.Now.AddSeconds(-1);
} }
catch (Exception e) catch (Exception)
{ {
// ignored // ignored
} }

View file

@ -14,5 +14,5 @@ public record BanRecord
public string? PlayerIp { get; set; } public string? PlayerIp { get; set; }
[Column("status")] [Column("status")]
public string Status { get; set; } public string? Status { get; set; }
} }