mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-07 22:28:48 +00:00
Remove node-unifi package dependency
- Add custom Unifi proxy built on existing cookie jar and httpProxy - Change formatApiCall to emit empty string instead of undefined on missing key
This commit is contained in:
parent
952f0295cc
commit
ac4dcd3222
8 changed files with 148 additions and 163 deletions
|
@ -2,7 +2,7 @@ export function formatApiCall(url, args) {
|
|||
const find = /\{.*?\}/g;
|
||||
const replace = (match) => {
|
||||
const key = match.replace(/\{|\}/g, "");
|
||||
return args[key];
|
||||
return args[key] || "";
|
||||
};
|
||||
|
||||
return url.replace(/\/+$/, "").replace(find, replace);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue