Skip to content

Commit

Permalink
Fix checksum ref after branch update
Browse files Browse the repository at this point in the history
Signed-off-by: Adrián Moreno <adrian@morenomartinez.com>
  • Loading branch information
adrianmo committed Feb 13, 2020
1 parent 1dea5fa commit 7ae4adf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tagblock.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func parseTagBlock(raw string) (TagBlock, string, error) {
var (
fieldsRaw = tags[0:sumSepIndex]
checksumRaw = strings.ToUpper(tags[sumSepIndex+1:])
checksum = xorChecksum(fieldsRaw)
checksum = Checksum(fieldsRaw)
err error
)

Expand Down

0 comments on commit 7ae4adf

Please sign in to comment.