mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-09 14:58:47 +00:00
Fix: field parsing fails with docker labels (#3101)
This commit is contained in:
parent
c89c4884b6
commit
54db9ac551
1 changed files with 1 additions and 1 deletions
|
@ -453,7 +453,7 @@ export function cleanServiceGroups(groups) {
|
|||
let fieldsList = fields;
|
||||
if (typeof fields === "string") {
|
||||
try {
|
||||
JSON.parse(fields);
|
||||
fieldsList = JSON.parse(fields);
|
||||
} catch (e) {
|
||||
logger.error("Invalid fields list detected in config for service '%s'", service.name);
|
||||
fieldsList = null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue