Skip to content

Commit

Permalink
Fix Xcode 14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroshihorie committed Sep 6, 2024
1 parent c6bcb46 commit 4d8f2f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/LiveKit/Support/AsyncCompleter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class AsyncCompleter<T>: Loggable {
// Create time-out block
let timeoutBlock = DispatchWorkItem { [weak self] in
guard let self else { return }
self.log("\(label) id: \(entryId) timed out")
self.log("\(self.label) id: \(entryId) timed out")
self._lock.sync {
if let entry = self._entries[entryId] {
entry.timeout()
Expand Down

0 comments on commit 4d8f2f5

Please sign in to comment.