fix: serialise version requests

This commit is contained in:
Anna 2022-07-10 13:23:33 -04:00
parent e859b6ce0a
commit 1c41c91559
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0

View File

@ -24,6 +24,7 @@ public class RequestKindFormatter : IMessagePackFormatter<RequestKind> {
RequestKind.Disband => "disband",
RequestKind.Promote => "promote",
RequestKind.Update => "update",
RequestKind.Version => "version",
_ => throw new ArgumentOutOfRangeException(nameof(value)),
};