Make default exported OPML file name Subscriptions-[accountName].opml. Fix #683.

This commit is contained in:
Brent Simmons 2019-05-26 22:17:19 -07:00
parent e5e9538318
commit bfe41438fc
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class ExportOPMLWindowController: NSWindowController {
panel.isExtensionHidden = false
let accountName = account.nameForDisplay.replacingOccurrences(of: " ", with: "").trimmingCharacters(in: .whitespaces)
panel.nameFieldStringValue = "\(accountName).opml"
panel.nameFieldStringValue = "Subscriptions-\(accountName).opml"
panel.beginSheetModal(for: hostWindow!) { result in
if result == NSApplication.ModalResponse.OK, let url = panel.url {