Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge branch 'main' into hd-fix-value-container
  • Loading branch information
czechboy0 committed Jul 17, 2023
commit 44008da3dbbdf307a2a1251044faa2cd2d8ddb00
4 changes: 2 additions & 2 deletions Sources/OpenAPIRuntime/Base/OpenAPIValue.swift
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,11 @@ public struct OpenAPIValueContainer: Codable, Equatable, Hashable, Sendable {
hasher.combine(value)
case let value as String:
hasher.combine(value)
case let value as [Sendable?]:
case let value as [(any Sendable)?]:
for item in value {
hasher.combine(OpenAPIValueContainer(validatedValue: item))
}
case let value as [String: Sendable?]:
case let value as [String: (any Sendable)?]:
for (key, itemValue) in value {
hasher.combine(key)
hasher.combine(OpenAPIValueContainer(validatedValue: itemValue))
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.