git.99rst.org
/
openwrt-luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
| inline |
side by side
(parent:
adf9e68
)
luci-app-acme: fixed the issue where certificates were not displaying (#8151)
author
zhusir
<redacted>
Mon, 15 Dec 2025 12:03:02 +0000
(20:03 +0800)
committer
GitHub
<redacted>
Mon, 15 Dec 2025 12:03:02 +0000
(13:03 +0100)
* luci-app-acme: fixed the issue where certificates were not displaying
applications/luci-app-acme/htdocs/luci-static/resources/view/acme/acme.js
patch
|
blob
|
history
diff --git
a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme/acme.js
b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme/acme.js
index 9b0950836735fb093dc5ff5ccc7911c3ea5eacd1..31556cb3a0a0c0aa112bde4dceed1f7a95d13e2e 100644
(file)
--- a/
applications/luci-app-acme/htdocs/luci-static/resources/view/acme/acme.js
+++ b/
applications/luci-app-acme/htdocs/luci-static/resources/view/acme/acme.js
@@
-12,7
+12,7
@@
return view.extend({
L.resolveDefault(fs.list('/etc/ssl/acme/'), []).then(files => {
let certs = [];
for (let f of files) {
- if (f.
type == 'file' && f.
name.match(/\.fullchain\.crt$/)) {
+ if (f.name.match(/\.fullchain\.crt$/)) {
certs.push(f);
}
}
git clone https://git.99rst.org/PROJECT