From f613340f2f25a49391a2030edb459bb9f6b4e846 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 17 Mar 2024 15:56:39 -0700 Subject: [PATCH] Mark Author as Sendable. --- Articles/Sources/Articles/Author.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Articles/Sources/Articles/Author.swift b/Articles/Sources/Articles/Author.swift index 9e88cd065..27520b1df 100644 --- a/Articles/Sources/Articles/Author.swift +++ b/Articles/Sources/Articles/Author.swift @@ -8,7 +8,7 @@ import Foundation -public struct Author: Codable, Hashable { +public struct Author: Codable, Hashable, Sendable { public let authorID: String // calculated public let name: String?