forked from TrueCloudLab/rclone
lib/errors: don't panic on uncomparable errors #3123
Same fix as c5775cf73d
This commit is contained in:
parent
81f8a5e0d9
commit
7963320a29
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ func Walk(err error, f WalkFunc) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if err == prev {
|
if reflect.DeepEqual(err, prev) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue