Skip to content

Commit

Permalink
use send queue should be false
Browse files Browse the repository at this point in the history
  • Loading branch information
Velin92 committed Nov 7, 2024
1 parent 0e9f644 commit b55f3e7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ElementX/Sources/Services/Timeline/TimelineProxy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ final class TimelineProxy: TimelineProxyProtocol {
progressWatcher: UploadProgressListener { progress in
progressSubject?.send(progress)
},
useSendQueue: true)
useSendQueue: false)

await requestHandle(handle)

Expand All @@ -260,7 +260,7 @@ final class TimelineProxy: TimelineProxyProtocol {
progressWatcher: UploadProgressListener { progress in
progressSubject?.send(progress)
},
useSendQueue: true)
useSendQueue: false)

await requestHandle(handle)

Expand Down Expand Up @@ -290,7 +290,7 @@ final class TimelineProxy: TimelineProxyProtocol {
progressWatcher: UploadProgressListener { progress in
progressSubject?.send(progress)
},
useSendQueue: true)
useSendQueue: false)

await requestHandle(handle)

Expand Down Expand Up @@ -338,7 +338,7 @@ final class TimelineProxy: TimelineProxyProtocol {
progressWatcher: UploadProgressListener { progress in
progressSubject?.send(progress)
},
useSendQueue: true)
useSendQueue: false)

await requestHandle(handle)

Expand Down Expand Up @@ -368,7 +368,7 @@ final class TimelineProxy: TimelineProxyProtocol {
progressWatcher: UploadProgressListener { progress in
progressSubject?.send(progress)
},
useSendQueue: true)
useSendQueue: false)

await requestHandle(handle)

Expand Down

0 comments on commit b55f3e7

Please sign in to comment.