fix issue that shouldn't actually be an issue
This commit is contained in:
parent
49fe4520ff
commit
ef3db63ba7
@ -80,7 +80,7 @@ namespace SharedLibraryCore.Database.Models
|
||||
set => CurrentAlias.IPAddress = value;
|
||||
}
|
||||
|
||||
[NotMapped] public string IPAddressString => IPAddress.ConvertIPtoString();
|
||||
[NotMapped] public string IPAddressString => IPAddress is null ? null : IPAddress.ConvertIPtoString();
|
||||
|
||||
[NotMapped] public bool IsIngame => ClientNumber >= 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user