fix: regex syntax error in proxmox plugin

This commit is contained in:
2026-08-02 13:20:15 -04:00
parent 0331cb976a
commit 230e5be2fd
2 changed files with 1 additions and 1 deletions
Binary file not shown.
+1 -1
View File
@@ -45,7 +45,7 @@ module.exports = {
}; };
// Ensure URL has no trailing slash // Ensure URL has no trailing slash
url = url.replace(/\\/+$/, ''); url = url.endsWith('/') ? url.slice(0, -1) : url;
const resources = []; const resources = [];
const edges = []; const edges = [];