Hard code enable the MarsEdit and Micro.blog extension points so that they work like 5.0.x

This commit is contained in:
Maurice Parker 2020-08-02 14:03:51 -05:00
parent d7caad9f7b
commit fd56a19edf
1 changed files with 3 additions and 1 deletions

View File

@ -26,7 +26,9 @@ import RSCore
}
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 {
return nil