This commit is contained in:
Kristofers Solo 2023-04-22 14:06:40 +03:00
parent 91efa3ff4c
commit ab213ef300

View File

@ -8,9 +8,7 @@ local source = {}
local enabled = true
source.new = function()
local self = setmetatable({ cache = {} }, { __index = source })
return self
return setmetatable({ cache = {} }, { __index = source })
end
source.complete = function(self, _, callback)