Allow feed labels in config

This commit is contained in:
Johanness
2026-05-24 21:28:11 +03:00
parent 58f9f7edaf
commit 102b1fb95f
5 changed files with 40 additions and 5 deletions
+6
View File
@@ -660,6 +660,12 @@ bool applyConfigFile(
feed.kind = FeedKind::MxlSdk;
}
if (const std::string* label =
jsonString(objectField(*feedObject, "label")))
{
feed.label = *label;
}
config.feeds[i] = std::move(feed);
}