We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0508efb commit e49c0b5Copy full SHA for e49c0b5
firestore/src/main/firestore_main.cc
@@ -383,8 +383,7 @@ Future<Query> FirestoreInternal::NamedQuery(const std::string& query_name) {
383
query_name,
384
[this, promise](const core::Query& query, bool found) mutable {
385
if (found) {
386
- promise.SetValue(
387
- MakePublic(api::Query(query, firestore_core_)));
+ promise.SetValue(MakePublic(api::Query(query, firestore_core_)));
388
} else {
389
promise.SetError(
390
Status(Error::kErrorNotFound, "Named query cannot be found"));
0 commit comments