Skip to content

Commit

Permalink
fix: self path of compactMap
Browse files Browse the repository at this point in the history
  • Loading branch information
makinosp committed Sep 7, 2024
1 parent 02e80b6 commit d21827d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/VRCKit/Models/InstanceModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public extension Instance {
platforms.android > 0 ? UserPlatform.android : nil,
platforms.ios > 0 ? UserPlatform.ios : nil,
platforms.standalonewindows > 0 ? UserPlatform.standalonewindows : nil
].compactMap(\.self)
].compactMap { $0 }
}
}

Expand Down

0 comments on commit d21827d

Please sign in to comment.