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();
_lastUpdateTime = DateTime.Now.AddSeconds(-1);
}
catch (Exception e)
catch (Exception)
{
// ignored
}

View file

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