aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorOmar Rizwan <omar.rizwan@gmail.com>2020-10-22 19:54:37 -0700
committerOmar Rizwan <omar.rizwan@gmail.com>2020-10-22 19:54:37 -0700
commit543dc7d4b2a5bc2c3166b512678f9bdd9a86beda (patch)
tree3bdf164739d00e49bb6de84748c0c548d4fe71c7 /fs
parent8bbcaf9343f7ddf835357acfa97fa9c5a13ba9ad (diff)
works on FF!! key thing was... to add indexedDB permission...
(I guess FF uses the DB in the backend? it makes async errors work...)
Diffstat (limited to 'fs')
-rw-r--r--fs/tabfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/tabfs.c b/fs/tabfs.c
index dcd55a8..3e5c243 100644
--- a/fs/tabfs.c
+++ b/fs/tabfs.c
@@ -240,6 +240,6 @@ main(int argc, char **argv)
for (int i = 0; i < argc; i++) {
fprintf(log, "arg%d: [%s]\n", i, argv[i]); fflush(log);
}
- char* fuse_argv[] = {argv[0], "-odirect_io", "-s", "-f", "mnt"};
+ char* fuse_argv[] = {argv[0], "-odirect_io,noappledouble", "-s", "-f", "mnt"};
return fuse_main(5, fuse_argv, &tabfs_filesystem_operations, NULL);
}