瀏覽代碼

PRS 7.46a

Kenric Nugteren 1 年之前
父節點
當前提交
f8ed07a332
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      inabox.wpf/ImageUtils.cs

+ 2 - 0
inabox.wpf/ImageUtils.cs

@@ -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))
             {