fix: use args instead of self for fetchers
This commit is contained in:
@@ -154,8 +154,11 @@ local function setup(st, opts)
|
|||||||
end, opts.order)
|
end, opts.order)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function fetch(self)
|
local function fetch(self, args)
|
||||||
local cwd = self.files[1].url:parent()
|
-- TODO: remove this once Yazi 0.4 is released
|
||||||
|
args = args or self
|
||||||
|
|
||||||
|
local cwd = args.files[1].url:parent()
|
||||||
local repo = root(cwd)
|
local repo = root(cwd)
|
||||||
if not repo then
|
if not repo then
|
||||||
remove(tostring(cwd))
|
remove(tostring(cwd))
|
||||||
@@ -163,7 +166,7 @@ local function fetch(self)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local paths = {}
|
local paths = {}
|
||||||
for _, f in ipairs(self.files) do
|
for _, f in ipairs(args.files) do
|
||||||
paths[#paths + 1] = tostring(f.url)
|
paths[#paths + 1] = tostring(f.url)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -189,7 +192,7 @@ local function fetch(self)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if self.files[1].cha.is_dir then
|
if args.files[1].cha.is_dir then
|
||||||
ya.dict_merge(changed, bubble_up(changed))
|
ya.dict_merge(changed, bubble_up(changed))
|
||||||
ya.dict_merge(changed, propagate_down(ignored, cwd, Url(repo)))
|
ya.dict_merge(changed, propagate_down(ignored, cwd, Url(repo)))
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -35,9 +35,12 @@ local function setup(st, opts)
|
|||||||
end, 500)
|
end, 500)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function fetch(self)
|
local function fetch(self, args)
|
||||||
|
-- TODO: remove this once Yazi 0.4 is released
|
||||||
|
args = args or self
|
||||||
|
|
||||||
local paths = {}
|
local paths = {}
|
||||||
for _, file in ipairs(self.files) do
|
for _, file in ipairs(args.files) do
|
||||||
paths[#paths + 1] = tostring(file.url)
|
paths[#paths + 1] = tostring(file.url)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -1051,13 +1051,16 @@ function M:setup(opts)
|
|||||||
self.fallback_file1 = opts.fallback_file1
|
self.fallback_file1 = opts.fallback_file1
|
||||||
end
|
end
|
||||||
|
|
||||||
function M:fetch()
|
function M:fetch(args)
|
||||||
|
-- TODO: remove this once Yazi 0.4 is released
|
||||||
|
args = args or self
|
||||||
|
|
||||||
local opts = options()
|
local opts = options()
|
||||||
local merged_files = ya.dict_merge(FILES, opts.with_files or {})
|
local merged_files = ya.dict_merge(FILES, opts.with_files or {})
|
||||||
local merged_exts = ya.dict_merge(EXTS, opts.with_exts or {})
|
local merged_exts = ya.dict_merge(EXTS, opts.with_exts or {})
|
||||||
|
|
||||||
local updates, unknown = {}, {}
|
local updates, unknown = {}, {}
|
||||||
for _, file in ipairs(self.files) do
|
for _, file in ipairs(args.files) do
|
||||||
local mime
|
local mime
|
||||||
if file.cha.len == 0 then
|
if file.cha.len == 0 then
|
||||||
mime = "inode/x-empty"
|
mime = "inode/x-empty"
|
||||||
@@ -1079,8 +1082,8 @@ function M:fetch()
|
|||||||
end
|
end
|
||||||
|
|
||||||
if #unknown > 0 then
|
if #unknown > 0 then
|
||||||
self.files = unknown
|
args.files = unknown
|
||||||
return require("mime").fetch(self)
|
return require("mime").fetch(args)
|
||||||
end
|
end
|
||||||
|
|
||||||
return 1
|
return 1
|
||||||
|
|||||||
Reference in New Issue
Block a user