mirror of
https://github.com/restic/restic.git
synced 2025-03-13 17:10:53 +00:00
Make ID.Str() handle nil ids correctly
This commit is contained in:
parent
2abda75404
commit
702b6cfc1e
@ -38,6 +38,9 @@ func (id ID) String() string {
|
||||
const shortStr = 4
|
||||
|
||||
func (id ID) Str() string {
|
||||
if id == nil {
|
||||
return "[nil]"
|
||||
}
|
||||
return hex.EncodeToString(id[:shortStr])
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user