mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 11:21:10 +08:00
lib/errors: don't panic on uncomparable errors #3123
Same fix as c5775cf73d
This commit is contained in:
parent
81f8a5e0d9
commit
7963320a29
|
@ -62,7 +62,7 @@ func Walk(err error, f WalkFunc) {
|
|||
}
|
||||
}
|
||||
}
|
||||
if err == prev {
|
||||
if reflect.DeepEqual(err, prev) {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user