[backend/masto-client] Fix typo in InstanceStats JSON mapping
This commit is contained in:
parent
578d9f59c1
commit
893a0d2feb
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ public class InstanceUrls(Config.InstanceSection config)
|
||||||
|
|
||||||
public class InstanceStats(long userCount, long noteCount, long instanceCount)
|
public class InstanceStats(long userCount, long noteCount, long instanceCount)
|
||||||
{
|
{
|
||||||
[J("users_count")] public long UserCount => userCount;
|
[J("user_count")] public long UserCount => userCount;
|
||||||
[J("status_count")] public long NoteCount => noteCount;
|
[J("status_count")] public long NoteCount => noteCount;
|
||||||
[J("domain_count")] public long InstanceCount => instanceCount;
|
[J("domain_count")] public long InstanceCount => instanceCount;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue