From 18d0b0e1e73d292566cb8ad7fde7270f86e641dc Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Fri, 3 May 2024 22:05:35 -0700 Subject: [PATCH] Fix concurrency warning in SendToCommand. --- Core/Sources/Core/SendToCommand.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Sources/Core/SendToCommand.swift b/Core/Sources/Core/SendToCommand.swift index 24254bcea..e82f2393b 100644 --- a/Core/Sources/Core/SendToCommand.swift +++ b/Core/Sources/Core/SendToCommand.swift @@ -29,7 +29,7 @@ public protocol SendToCommand { /// The image for the command. /// /// Often the icon of the target application. - var image: RSImage? { get } + @MainActor var image: RSImage? { get } /// Determine whether an object can be sent to the target application. ///