summaryrefslogtreecommitdiff
path: root/contrib/fs/handlers.go
diff options
context:
space:
mode:
authortjp <tjp@ctrl-c.club>2023-11-14 09:39:53 -0700
committertjp <tjp@ctrl-c.club>2023-11-14 09:39:53 -0700
commitc22799fa12c99932fc4620fce2dc0994567a52af (patch)
tree5c89892e82f0ca805af976a2d2038a690152d4c6 /contrib/fs/handlers.go
parente599f0e2d4f8177143478ba17189e1ef656b7fe0 (diff)
bugfixes from the Protocol refactorv1.6.0
Diffstat (limited to 'contrib/fs/handlers.go')
-rw-r--r--contrib/fs/handlers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fs/handlers.go b/contrib/fs/handlers.go
index 75422d9..02b7d38 100644
--- a/contrib/fs/handlers.go
+++ b/contrib/fs/handlers.go
@@ -79,7 +79,7 @@ func directoryDefault(
if err != nil {
return protocol.TemporaryServerError(err)
}
- return protocol.Success(filepath.Base(fpath), file)
+ return protocol.Success(fpath, file)
}
return nil