Fix the OPML export when there is only one exportable account. Issue #1457

This commit is contained in:
Maurice Parker 2019-12-26 12:35:39 -07:00
parent 1043b42472
commit 4b361300f4
1 changed files with 1 additions and 0 deletions

View File

@ -380,6 +380,7 @@ private extension SettingsViewController {
func exportOPML(sourceView: UIView, sourceRect: CGRect) {
if AccountManager.shared.accounts.count == 1 {
opmlAccount = AccountManager.shared.accounts.first!
exportOPMLDocumentPicker()
} else {
exportOPMLAccountPicker(sourceView: sourceView, sourceRect: sourceRect)