mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
Fix message count and created not being mapped properly
This weirdly only happens when going through ListedMember, perhaps the inheritance is making it so Dapper doesn't detect the backing field or soemthing... Adding a setter to the autoproperty makes things work, though.
This commit is contained in:
parent
378c49cb20
commit
a31782864d
1 changed files with 2 additions and 2 deletions
|
|
@ -20,8 +20,8 @@ namespace PluralKit.Core {
|
|||
public string Description { get; set; }
|
||||
public ICollection<ProxyTag> ProxyTags { get; set; }
|
||||
public bool KeepProxy { get; set; }
|
||||
public Instant Created { get; }
|
||||
public int MessageCount { get; }
|
||||
public Instant Created { get; set; }
|
||||
public int MessageCount { get; set; }
|
||||
|
||||
public PrivacyLevel MemberVisibility { get; set; }
|
||||
public PrivacyLevel DescriptionPrivacy { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue