From bfe41438fc476dbcaab4e7950e2dc697f3ec55e8 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 26 May 2019 22:17:19 -0700 Subject: [PATCH] Make default exported OPML file name Subscriptions-[accountName].opml. Fix #683. --- Mac/MainWindow/OPML/ExportOPMLWindowController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/MainWindow/OPML/ExportOPMLWindowController.swift b/Mac/MainWindow/OPML/ExportOPMLWindowController.swift index 5b7250875..cdbda991c 100644 --- a/Mac/MainWindow/OPML/ExportOPMLWindowController.swift +++ b/Mac/MainWindow/OPML/ExportOPMLWindowController.swift @@ -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 {