From b564b1a836949461ce8b771c772ec16bec5b0c70 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sun, 24 Jan 2021 20:16:29 -0500 Subject: [PATCH] [F] Fix display not detecting family --- ProjectClock/AccountViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectClock/AccountViewController.swift b/ProjectClock/AccountViewController.swift index 4998a6e..12b9d81 100644 --- a/ProjectClock/AccountViewController.swift +++ b/ProjectClock/AccountViewController.swift @@ -171,7 +171,7 @@ class ManageVC: UIViewController lJoinDate.text = localStorage.string(forKey: "id") // Display family name - if let family = localStorage.object(forKey: "family") as? Family + if let family = Family.fromLocal() { lCurrentFamily.text = family.name }