Skip to content

Commit 0069b8b

Browse files
var-consta-maurice
authored andcommitted
Import of the hotfix to Firestore release 1.10.0 from GitHub.
The only manual change is to use the newly-added `AsyncQueue::Create` function. Copybara-generated description follows: Import of Firestore from GitHub. - c2ec9dac574455a040cbb6ad591110a8c3a04f37 Fixes for issues discovered in the Unity desktop build (#... by Gil <[email protected]> PiperOrigin-RevId: 293454352
1 parent 97204c3 commit 0069b8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

firestore/src/ios/firestore_ios.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ using util::AsyncQueue;
3535
using util::Executor;
3636
using util::Status;
3737

38-
std::unique_ptr<AsyncQueue> CreateWorkerQueue() {
38+
std::shared_ptr<AsyncQueue> CreateWorkerQueue() {
3939
auto executor = Executor::CreateSerial("com.google.firebase.firestore");
40-
return absl::make_unique<AsyncQueue>(std::move(executor));
40+
return AsyncQueue::Create(std::move(executor));
4141
}
4242

4343
std::unique_ptr<CredentialsProvider> CreateCredentialsProvider(App* app) {

0 commit comments

Comments
 (0)