aboutsummaryrefslogtreecommitdiff
path: root/src/lpm.lua
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-01-01 15:54:46 -0500
committerAdam Harrison <adamdharrison@gmail.com>2023-01-01 15:54:46 -0500
commitb43c87619934bb560637ddccd56053907d45662b (patch)
tree60bdde1434c9918960fd7cb7b9a1de6ef8ac197c /src/lpm.lua
parent6f27a8e2ff75366bdb3e72cfedbd61263dafacb5 (diff)
downloadlite-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.lua2
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