We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e19fec commit ff173a0Copy full SHA for ff173a0
src/InformaticsGateway/Services/Http/MonaiAeTitleController.cs
@@ -231,7 +231,7 @@ private async Task ValidateCreateAsync(MonaiApplicationEntity item)
231
{
232
throw new ObjectExistsException($"A MONAI Application Entity with the same AE Title '{item.AeTitle}' already exists.");
233
}
234
- if (item.IgnoredSopClasses.Count != 0 && item.AllowedSopClasses.Count != 0)
+ if (item.IgnoredSopClasses.Count != 0 && item.AllowedSopClasses.Count is not 0)
235
236
throw new ConfigurationException($"Cannot specify both allowed and ignored SOP classes at the same time, they are mutually exclusive.");
237
0 commit comments