mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-18 23:38:18 +00:00
Only read magic-folder config from config reader
Also, fix the umask feature which was completely broken previously due to failure to parse the umask string into an integer.
This commit is contained in:
@ -606,7 +606,7 @@ class _Client(node.Node, pollmixin.PollMixin):
|
||||
collective_dircap=mf_config["collective_dircap"],
|
||||
local_path_u=abspath_expanduser_unicode(local_dir_config, base=self.basedir),
|
||||
dbfile=abspath_expanduser_unicode(db_filename),
|
||||
umask=self.get_config("magic_folder", "download.umask", 0077),
|
||||
umask=mf_config["umask"],
|
||||
name=name,
|
||||
downloader_delay=poll_interval,
|
||||
)
|
||||
|
Reference in New Issue
Block a user