fix(fs): add unicode normalize to path-fn

This is a catch-all type fix
This commit is contained in:
Andelf
2023-05-17 01:00:47 +08:00
parent 68da34ed0d
commit 51201124ff
3 changed files with 9 additions and 10 deletions

View File

@@ -238,8 +238,7 @@
(when-not contents-matched?
(backup-file repo-dir :backup-dir fpath disk-content))
(db/set-file-last-modified-at! repo rpath mtime)
(p/let [content content]
(db/set-file-content! repo rpath content))
(db/set-file-content! repo rpath content)
(when ok-handler
(ok-handler repo fpath result))
result)