Merge branch 'mac-candidate' into main

This commit is contained in:
Maurice Parker 2020-08-02 14:05:46 -05:00
commit 87fc73c5de

View File

@ -26,7 +26,9 @@ import RSCore
} }
static func customSharingServices(for items: [Any]) -> [NSSharingService] { static func customSharingServices(for items: [Any]) -> [NSSharingService] {
let customServices = ExtensionPointManager.shared.activeSendToCommands.compactMap { (sendToCommand) -> NSSharingService? in // MarsEdit and MicroBlog are hardcode only for the Mac 5.1 release
let hardCodedCommands: [SendToCommand] = [SendToMarsEditCommand(), SendToMicroBlogCommand()]
let customServices = hardCodedCommands.compactMap { (sendToCommand) -> NSSharingService? in
guard let object = items.first else { guard let object = items.first else {
return nil return nil