Compare commits
2 Commits
81ac3708a3
...
104981f3d3
Author | SHA1 | Date |
---|---|---|
Shadowfacts | 104981f3d3 | |
Shadowfacts | 2ba6b64485 |
|
@ -77,3 +77,13 @@ class InlineTrendsViewController: UIViewController {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
extension InlineTrendsViewController: StateRestorableViewController {
|
||||
func stateRestorationActivity() -> NSUserActivity? {
|
||||
if searchController.isActive {
|
||||
return UserActivityManager.searchActivity(query: searchController.searchBar.text, accountID: mastodonController.accountInfo!.id)
|
||||
} else {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ struct BehaviorPrefsView: View {
|
|||
} header: {
|
||||
Text("Timeline")
|
||||
} footer: {
|
||||
Text("Syncing via the Mastodon API can be more reliable than iCloud, but is not compatible with the Mastodon web interface.")
|
||||
Text("Syncing via the Mastodon API can be more reliable than iCloud, but is not compatible with the Mastodon web interface. Only the Home timeline can be synced via the Mastodon API.")
|
||||
}
|
||||
.appGroupedListRowBackground()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue