Skip to content

Commit 76388b5

Browse files
committed
Update to 5.3.2 of SwiftPhoenixClient
1 parent df6b03a commit 76388b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ let package = Package(
2525
dependencies: [
2626
// Dependencies declare other packages that this package depends on.
2727
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.3.2"),
28-
.package(url: "https://github.com/davidstump/SwiftPhoenixClient.git", .upToNextMinor(from: "5.0.0")),
28+
.package(url: "https://github.com/davidstump/SwiftPhoenixClient.git", .upToNextMinor(from: "5.3.2")),
2929
.package(url: "https://github.com/apple/swift-async-algorithms", from: "0.1.0"),
3030
.package(url: "https://github.com/liveview-native/liveview-native-core-swift.git", exact: "0.2.1"),
3131

Sources/LiveViewNative/Coordinators/LiveSessionCoordinator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ public class LiveSessionCoordinator<R: RootRegistry>: ObservableObject {
418418
socket.off(refs)
419419
continuation.resume(returning: socket)
420420
})
421-
refs.append(socket.onError { [weak self, weak socket] (error) in
421+
refs.append(socket.onError { [weak self, weak socket] (error, response) in
422422
guard let socket else { return }
423423
guard self != nil else {
424424
socket.disconnect()

0 commit comments

Comments
 (0)