Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Sources/FoundationEssentials/URL/URL.swift
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,11 @@ public struct URLResourceValues {

#if os(macOS)
/// The array of Tag names.
public var tagNames: [String]? { return _get(.tagNamesKey) }
public var tagNames: [String]? {
get { return _get(.tagNamesKey) }
@available(macOS 26.0, *)
set { _set(.tagNamesKey, newValue: newValue) }
}
#endif

/// The URL's path as a file system path.
Expand Down