Skip to content

Commit bdfd860

Browse files
Update changelog Fixes #163
1 parent 7cf3553 commit bdfd860

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
- Update vfs to implement io/fs's fs.FS interface fixes #163
89

910
## [v7.4.1] - 2025-05-05
1011
### Security

backend/ftp/file.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ func (f *File) Exists() (bool, error) {
156156
// Returns error if unable to touch File.
157157
func (f *File) Touch() error {
158158
exists, err := f.Exists()
159-
if (err != nil) {
159+
if err != nil {
160160
return utils.WrapTouchError(err)
161161
}
162162

0 commit comments

Comments
 (0)