From 5436e44f155eb3a4c7de59ee715a7e9030426c61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juanpe=20Catala=CC=81n?= Date: Mon, 26 Aug 2019 22:37:11 +0200 Subject: [PATCH] fix: property name --- Sources/Extensions/UIView+UIApplicationDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Extensions/UIView+UIApplicationDelegate.swift b/Sources/Extensions/UIView+UIApplicationDelegate.swift index ce39eaeb..c5978797 100644 --- a/Sources/Extensions/UIView+UIApplicationDelegate.swift +++ b/Sources/Extensions/UIView+UIApplicationDelegate.swift @@ -32,6 +32,6 @@ extension UIView { } @objc func appDidEnterBackground() { - UserDefaults.standard.set((isSkeletonActive && skeletonIsAnimated), forKey: Constants.needAnimatedSkeletonKey) + UserDefaults.standard.set((isSkeletonActive && isSkeletonAnimated), forKey: Constants.needAnimatedSkeletonKey) } }