Skip to content

Commit d21827d

Browse files
committed
fix: self path of compactMap
1 parent 02e80b6 commit d21827d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/VRCKit/Models/InstanceModel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public extension Instance {
7070
platforms.android > 0 ? UserPlatform.android : nil,
7171
platforms.ios > 0 ? UserPlatform.ios : nil,
7272
platforms.standalonewindows > 0 ? UserPlatform.standalonewindows : nil
73-
].compactMap(\.self)
73+
].compactMap { $0 }
7474
}
7575
}
7676

0 commit comments

Comments
 (0)