1
0
mirror of https://github.com/rclone/rclone.git synced 2025-08-10 06:09:44 +02:00

seafile: fix integration test errors by adding dot to encoding

The seafile backend used to be able to cope with files called "." and
".." but at some point became unable to do so, causing integration
test failurs.

This adds EncodeDot to the encoding which encodes "." and ".." names.
This commit is contained in:
Nick Craig-Wood
2025-07-05 21:27:10 +01:00
parent 87a65ec6a5
commit 4107246335

View File

@@ -111,7 +111,8 @@ func init() {
encoder.EncodeSlash |
encoder.EncodeBackSlash |
encoder.EncodeDoubleQuote |
encoder.EncodeInvalidUtf8),
encoder.EncodeInvalidUtf8 |
encoder.EncodeDot),
}},
})
}