diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-01-01 15:54:46 -0500 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-01-01 15:54:46 -0500 |
commit | b43c87619934bb560637ddccd56053907d45662b (patch) | |
tree | 60bdde1434c9918960fd7cb7b9a1de6ef8ac197c /src/lpm.lua | |
parent | 6f27a8e2ff75366bdb3e72cfedbd61263dafacb5 (diff) | |
download | lite-xl-plugin-manager-b43c87619934bb560637ddccd56053907d45662b.tar.gz lite-xl-plugin-manager-b43c87619934bb560637ddccd56053907d45662b.zip |
Added in more rows.
Diffstat (limited to 'src/lpm.lua')
-rw-r--r-- | src/lpm.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpm.lua b/src/lpm.lua index d37f46b..fa88dbd 100644 --- a/src/lpm.lua +++ b/src/lpm.lua @@ -486,7 +486,7 @@ function common.get(source, target, checksum, callback, depth) if not source then error("requires url") end if (depth or 0) > 10 then error("too many redirects") end local _, _, protocol, hostname, port, rest = source:find("^(https?)://([^:/?]+):?(%d*)(.*)$") - log_progress_action("Downloading " .. source:sub(1, 60) .. "...") + log_progress_action("Downloading " .. source:sub(1, 100) .. "...") if not protocol then error("malfomed url " .. source) end if not port or port == "" then port = protocol == "https" and 443 or 80 end if not checksum then |