This commit is contained in:
hrsh7th
2021-12-01 15:03:59 +09:00
parent f2f9a3325c
commit a61c36a639
2 changed files with 9 additions and 10 deletions

View File

@@ -230,17 +230,17 @@ core.complete = function(self, ctx)
if s_.incomplete and new:changed(s_.context) then
s_:complete(new, callback)
else
for _, s__ in ipairs(self:get_sources({ source.SourceStatus.FETCHING })) do
if s_ == s__ then
break
end
if not s__.incomplete and SOURCE_TIMEOUT > s__:get_fetching_time() then
return
for _, s__ in ipairs(self:get_sources({ source.SourceStatus.FETCHING })) do
if s_ == s__ then
break
end
if not s__.incomplete and SOURCE_TIMEOUT > s__:get_fetching_time() then
return
end
end
self.filter.timeout = self.view:visible() and THROTTLE_TIME or 0
self:filter()
end
self.filter.timeout = self.view:visible() and THROTTLE_TIME or 0
self:filter()
end
end
end)(s)
s:complete(ctx, callback)