From 1799f166ee14d26b5606a48d8b61a4d4e2f34c3a Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Tue, 28 May 2019 10:08:04 -0400 Subject: [PATCH] remove duplicate --- MVMCoreUI/Atoms/Views/MFLoadImageView.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/MVMCoreUI/Atoms/Views/MFLoadImageView.swift b/MVMCoreUI/Atoms/Views/MFLoadImageView.swift index 3593e9e4..2a72481e 100644 --- a/MVMCoreUI/Atoms/Views/MFLoadImageView.swift +++ b/MVMCoreUI/Atoms/Views/MFLoadImageView.swift @@ -197,7 +197,6 @@ import UIKit if let imageName = json?.optionalStringForKey("image"), shouldLoadImage(withName: imageName, width: width) { imageView.image = nil imageView.animatedImage = nil - loadImage(withName: imageName, format: json?.optionalStringForKey("imageFormat"), width: NSNumber(value: Double(width)), height: nil) loadImage(withName: imageName, format: json?.optionalStringForKey("imageFormat"), width: NSNumber(value: Double(width)), height: nil, customFallbackImage: json?.optionalStringForKey("fallbackImage")) } }