feature: Email argument type (#433)

* feature: Email argument type

* bugfix: Fix error if additional links is null
This commit is contained in:
James Read
2024-10-13 19:40:16 +01:00
committed by GitHub
parent 6e0e0e8133
commit b31cdf15a2
3 changed files with 68 additions and 45 deletions

View File

@@ -134,7 +134,7 @@ function processWebuiSettingsJson (settings) {
}
function processAdditionaLinks (links) {
if (links === undefined) {
if (links === null) {
return
}