From 77b01eb72c17cd86bd80b2f281047a0a2487a554 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Thu, 5 Oct 2017 18:02:01 -0700 Subject: [PATCH] Remove emailSupport action, since there is no email-based support. --- Evergreen/AppDelegate.swift | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Evergreen/AppDelegate.swift b/Evergreen/AppDelegate.swift index 0c29ce80b..4dbb0eafc 100644 --- a/Evergreen/AppDelegate.swift +++ b/Evergreen/AppDelegate.swift @@ -246,16 +246,6 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations { } } - @IBAction func emailSupport(_ sender: AnyObject) { - - let escapedAppName = appName.replacingOccurrences(of: " ", with: "%20") - let version = Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString")! - let urlString = "mailto:support@ranchero.com?subject=I%20need%20help%20with%20\(escapedAppName)%20\(version)&body=I%20ran%20into%20a%20problem:%20" - if let url = URL(string: urlString) { - NSWorkspace.shared.open(url) - } - } - @IBAction func addAppNews(_ sender: AnyObject) { if AccountManager.shared.anyAccountHasFeedWithURL(appNewsURLString) {