@@ -386,7 +386,9 @@ namespace InABox.WPF
public static void LoadImage(this BitmapImage image, byte[]? imageData)
{
if (imageData == null || imageData.Length == 0)
+ {
return;
+ }
using (var mem = new MemoryStream(imageData))