From 866988edcf4813e4463ef8503a7ca67c0ca95c15 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Mon, 11 Nov 2019 13:47:28 -0600 Subject: [PATCH] Correct deep link comments. --- Frameworks/Account/Feed.swift | 3 ++- Frameworks/Account/Folder.swift | 3 ++- Shared/Data/ArticleUtilities.swift | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Frameworks/Account/Feed.swift b/Frameworks/Account/Feed.swift index 0ca76adcd..cd3a17ec1 100644 --- a/Frameworks/Account/Feed.swift +++ b/Frameworks/Account/Feed.swift @@ -179,7 +179,8 @@ public final class Feed: DisplayNameProvider, Renamable, UnreadCountProvider, De account.renameFeed(self, to: newName, completion: completion) } - // MARK: - PathIDUserInfoProvider + // MARK: - DeepLinkProvider + public var deepLinkUserInfo: [AnyHashable : Any] { return [ DeepLinkKey.accountID.rawValue: account?.accountID ?? "", diff --git a/Frameworks/Account/Folder.swift b/Frameworks/Account/Folder.swift index c341e110a..e23e7804a 100644 --- a/Frameworks/Account/Folder.swift +++ b/Frameworks/Account/Folder.swift @@ -33,7 +33,8 @@ public final class Folder: DisplayNameProvider, Renamable, Container, UnreadCoun return name ?? Folder.untitledName } - // MARK: - PathIDUserInfoProvider + // MARK: - DeepLinkProvider + public var deepLinkUserInfo: [AnyHashable : Any] { return [ DeepLinkKey.accountID.rawValue: account?.accountID ?? "", diff --git a/Shared/Data/ArticleUtilities.swift b/Shared/Data/ArticleUtilities.swift index e954f215b..51c598115 100644 --- a/Shared/Data/ArticleUtilities.swift +++ b/Shared/Data/ArticleUtilities.swift @@ -94,7 +94,7 @@ extension Article { } } -// MARK: PathIDUserInfoProvider +// MARK: DeepLinkProvider extension Article: DeepLinkProvider {