Skip to content

Commit

Permalink
out by one error
Browse files Browse the repository at this point in the history
  • Loading branch information
jgough committed Dec 12, 2024
1 parent 0072b1b commit 880882f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logverification/eventsv1.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func NewEventsV1ExtraBytes(originTenant string) ([]byte, error) {
return nil, err
}

copy(extraBytes[1:len(originTenantUuid)], originTenantUuid[:])
copy(extraBytes[1:len(originTenantUuid)+1], originTenantUuid[:])

return extraBytes, nil
}
Expand Down

0 comments on commit 880882f

Please sign in to comment.