From 49082683473108b8211e991830750240bb014707 Mon Sep 17 00:00:00 2001 From: Thomas <31560900+0xtlt@users.noreply.github.com> Date: Fri, 23 Dec 2022 18:26:19 +0100 Subject: [PATCH] Rebased tmp profile --- damus/Views/MetadataView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/MetadataView.swift b/damus/Views/MetadataView.swift index 4588d42..1d818d6 100644 --- a/damus/Views/MetadataView.swift +++ b/damus/Views/MetadataView.swift @@ -107,7 +107,7 @@ struct MetadataView: View { self.timer?.invalidate() self.timer = Timer.scheduledTimer(withTimeInterval: 1, repeats: false) { _ in profiles = Profiles() - let tmp_profile = Profile(name: "0", display_name: "0", about: "0", picture: isHttpsUrl(picture) && isImage(picture) ? picture : nil, website: nil, nip05: "", lud06: nil, lud16: nil) + let tmp_profile = Profile(name: "0", display_name: "0", about: "0", picture: isHttpsUrl(picture) && isImage(picture) ? picture : nil, website: nil, lud06: "", lud16: nil, nip05: nil) let ts_profile = TimestampedProfile(profile: tmp_profile, timestamp: 0) profiles.add(id: "0", profile: ts_profile) }