Correct deep link comments.
This commit is contained in:
parent
91f7da615c
commit
866988edcf
|
@ -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 ?? "",
|
||||
|
|
|
@ -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 ?? "",
|
||||
|
|
|
@ -94,7 +94,7 @@ extension Article {
|
|||
}
|
||||
}
|
||||
|
||||
// MARK: PathIDUserInfoProvider
|
||||
// MARK: DeepLinkProvider
|
||||
|
||||
extension Article: DeepLinkProvider {
|
||||
|
||||
|
|
Loading…
Reference in New Issue