Skip to content

Commit

Permalink
fix: legacy path support
Browse files Browse the repository at this point in the history
  • Loading branch information
drochetti committed Feb 21, 2024
1 parent cefe140 commit 294ec02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/FalClient/Client.swift
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public extension Client {
includeLogs: Bool = false,
onQueueUpdate: OnQueueUpdate? = nil
) async throws -> Payload {
let appId = path.map { "\(app)/\($0)" } ?? app
let appId = path.map { "\(app)\($0)" } ?? app
return try await subscribe(to: appId,
input: input,
pollInterval: pollInterval,
Expand Down

0 comments on commit 294ec02

Please sign in to comment.