citrix / citrix/PublishURLContent

Crash if Delivery Group Description is blank

Open
#9 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
C#
Stars
7
Forks
2
PR merge metrics
No merged PRs in 30d

Description

The utility will crash on launch if one or more of your Delivery Groups does not have a description (the Description is empty).

To find affected groups:
```powershell
Get-BrokerDesktopGroup | Where-Object Description -eq $null
```

As a workaround, I removed line 214 from `MainForm.cs` so it doesn't collect the `Description` property:

```csharp
dGroup.Description = desktopGroup.Properties["Description"].Value.ToString();
```

If we still want to collect the Description, please add a null check.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.