diff options
Diffstat (limited to 'downloader.lua')
-rw-r--r-- | downloader.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/downloader.lua b/downloader.lua index 7fee596..768d726 100644 --- a/downloader.lua +++ b/downloader.lua @@ -1,6 +1,6 @@ -- Copyright 2025 David Vazgenovich Shakaryan -local utils = require('mp.utils') +local mp_utils = require('mp.utils') local downloader = {} local mt = {} @@ -14,7 +14,7 @@ function downloader.new() end function mt:exec(url, file, cb) - if utils.file_info(file) then + if mp_utils.file_info(file) then self:exec_next() return end |