Commit
+1 -1 +/-1 browse
1 | diff --git a/pkg/hierarchy/fuse.go b/pkg/hierarchy/fuse.go |
2 | index e5cdd54..241eafa 100644 |
3 | --- a/pkg/hierarchy/fuse.go |
4 | +++ b/pkg/hierarchy/fuse.go |
5 | @@ -32,7 +32,7 @@ func (me *noteFs) GetAttr(name string, context *fuse.Context) (*fuse.Attr, fuse. |
6 | Owner: *fuse.CurrentOwner(), |
7 | Ctime: uint64(note.CreatedAt.Unix()), |
8 | Mtime: uint64(note.ModifiedAt.Unix()), |
9 | - Mode: fuse.S_IFREG, |
10 | + Mode: fuse.S_IFREG | 0644, |
11 | Size: uint64(len(note.Content)), |
12 | }, fuse.OK |
13 | } |