From 2a44e1ccf13b752fc0d5af0dbc77f7f11a12f7af Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 17 Mar 2024 15:57:33 -0700 Subject: [PATCH] Mark Article as Sendable. --- Articles/Sources/Articles/Article.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Articles/Sources/Articles/Article.swift b/Articles/Sources/Articles/Article.swift index 8581ba427..3d363e509 100644 --- a/Articles/Sources/Articles/Article.swift +++ b/Articles/Sources/Articles/Article.swift @@ -10,7 +10,7 @@ import Foundation public typealias ArticleSetBlock = (Set
) -> Void -public struct Article: Hashable { +public struct Article: Hashable, Sendable { public let articleID: String // Unique database ID (possibly sync service ID) public let accountID: String