ls: Check for non-nil error before calling panic()

This commit is contained in:
Alexander Neumann 2021-02-07 21:09:00 +01:00
parent 9985368d46
commit c0f2c1d871
1 changed files with 6 additions and 2 deletions

View File

@ -165,7 +165,9 @@ func runLs(opts LsOptions, gopts GlobalOptions, args []string) error {
ShortID: sn.ID().Str(),
StructType: "snapshot",
})
panic(err)
if err != nil {
Warnf("JSON encode failed: %v\n", err)
}
}
printNode = func(path string, node *restic.Node) {
@ -182,7 +184,9 @@ func runLs(opts LsOptions, gopts GlobalOptions, args []string) error {
ChangeTime: node.ChangeTime,
StructType: "node",
})
panic(err)
if err != nil {
Warnf("JSON encode failed: %v\n", err)
}
}
} else {
printSnapshot = func(sn *restic.Snapshot) {