Skip to content

Commit

Permalink
fix: group id should be bytes not string on validation result too
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Normore committed Jan 11, 2024
1 parent 232a956 commit d9878ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions go/mls_validation/v1/service.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/mls_validation/v1/service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ message ValidateGroupMessagesResponse {
message ValidationResponse {
bool is_ok = 1;
string error_message = 2;
string group_id = 3;
bytes group_id = 3;
}

repeated ValidationResponse responses = 1;
Expand Down

0 comments on commit d9878ff

Please sign in to comment.