2023-06-23 10:41:28.522 -04:00 [DBG] Reading configuration for Tag
2023-06-23 10:41:28.524 -04:00 [DBG] Reading configuration file tags.ps1
2023-06-23 10:41:28.524 -04:00 [DBG] File doesn’t exist or is empty. Setting default items.
and this:
An error occurred: Cannot bind argument to parameter ‘Tag’ because it is an empty string.
Endpoint: PageUsersBasicTab
Session: a1032bad-2d10-489e-96b0-cf001afde5da, User: doug@xxx.org
at PageUsersBasicTab: line 122
at PageUsersBasicTab: line 1
at UsersBasicConfigTabDynamic.ps1 : line 13
I figured out what is causing the tag to show up. On each page, I have the following:
New-UDHelmet -Content {
New-UDHtmlTag -Tag ‘title’ -Content { “$Cache:SiteName - Telephony” }
New-UDHtmlTag -Tag ‘link’ -Attributes @{
rel = ‘icon’
href = $Cache:FavIco
}
}
I am guessing you made some changes to UDHelmet (I see notes saying it is integrated), but I don’t know what changes were made or what to change to accommodate the changes.