File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ endif()
20
20
21
21
# If the format of the line below changes, then be sure to update
22
22
# https://github.com/firebase/firebase-cpp-sdk/blob/fd054fa016/.github/workflows/update-dependencies.yml#L81
23
- set (version CocoaPods-10.1.0 )
23
+ set (version 63c6de7eb9d350b849d545461c8c80ff6a2333fb )
24
24
25
25
function (GetReleasedDep )
26
26
message ("Getting released firebase-ios-sdk @ ${version} " )
Original file line number Diff line number Diff line change @@ -237,8 +237,13 @@ core::Bound QueryInternal::ToBound(
237
237
const std::vector<FieldValue>& field_values) const {
238
238
const core::Query& internal_query = query_.query ();
239
239
// Use explicit order bys because it has to match the query the user made.
240
+ #if TARGET_OS_IOS || TARGET_OS_TV
240
241
const core::OrderByList& explicit_order_bys =
241
242
internal_query.explicit_order_bys ();
243
+ #else
244
+ const std::vector<core::OrderBy>& explicit_order_bys =
245
+ internal_query.explicit_order_bys ();
246
+ #endif
242
247
243
248
if (field_values.size () > explicit_order_bys.size ()) {
244
249
SimpleThrowInvalidArgument (
You can’t perform that action at this time.
0 commit comments