Skip to content

Commit

Permalink
Fix printing of ChunkIDs (#278)
Browse files Browse the repository at this point in the history
* Fix printing of ChunkIDs

* newline
  • Loading branch information
folbricht authored Feb 1, 2025
1 parent 50728ef commit ec051c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/desync/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func runList(ctx context.Context, opt listOptions, args []string) error {
}
// Write the list of chunk IDs to STDOUT
for _, chunk := range c.Chunks {
fmt.Fprintln(stdout, chunk.ID)
fmt.Fprintln(stdout, chunk.ID.String())
// See if we're meant to stop
select {
case <-ctx.Done():
Expand Down
2 changes: 1 addition & 1 deletion errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type ChunkInvalid struct {
}

func (e ChunkInvalid) Error() string {
return fmt.Sprintf("chunk id %s does not match its hash %s", e.ID, e.Sum)
return fmt.Sprintf("chunk id %s does not match its hash %s", e.ID.String(), e.Sum.String())
}

// InvalidFormat is returned when an error occurred when parsing an archive file
Expand Down

0 comments on commit ec051c6

Please sign in to comment.