comparison src/luan/host/https.luan @ 2042:731c4ec1ae86 acme-tiny

fix string conversion
author Violet7
date Sun, 09 Nov 2025 02:15:44 -0800
parents cd51e7e31950
children 849ce7f4cfc7
comparison
equal deleted inserted replaced
2041:cd51e7e31950 2042:731c4ec1ae86
134 134
135 -- The above http requests made by acme_tiny are the only thing 135 -- The above http requests made by acme_tiny are the only thing
136 -- that could cause a recursion so it is safe to delete the guard here. 136 -- that could cause a recursion so it is safe to delete the guard here.
137 137
138 catch e 138 catch e
139 logger.error("Error setting up ACME: "..tostring(e)) 139 logger.error("Error setting up ACME: "..e.to_string())
140 finally 140 finally
141 if guard_uri and guard_uri.exists() then 141 if guard_uri and guard_uri.exists() then
142 guard_uri.delete() 142 guard_uri.delete()
143 end 143 end
144 local cmd = "rm -rf "..temp_dir_string 144 local cmd = "rm -rf "..temp_dir_string