diff --git a/PluralKit.Core/Models/ProxyTag.cs b/PluralKit.Core/Models/ProxyTag.cs index c00a5e50..c433f0b5 100644 --- a/PluralKit.Core/Models/ProxyTag.cs +++ b/PluralKit.Core/Models/ProxyTag.cs @@ -16,7 +16,7 @@ namespace PluralKit.Core [JsonIgnore] public string ProxyString => $"{Prefix ?? ""}text{Suffix ?? ""}"; - public bool IsEmpty => Prefix == null && Suffix == null; + [JsonIgnore] public bool IsEmpty => Prefix == null && Suffix == null; public bool Equals(ProxyTag other) => Prefix == other.Prefix && Suffix == other.Suffix; @@ -31,4 +31,4 @@ namespace PluralKit.Core } } } -} \ No newline at end of file +}