Skip to content

Commit

Permalink
fix(firestore, ios): fix query stream handler options. (#12739)
Browse files Browse the repository at this point in the history
* fix(firestore, ios): fix query stream handler options.

* formatting
  • Loading branch information
TarekkMA committed May 3, 2024
1 parent f00fe1c commit 953bf92
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -95,7 +95,8 @@ - (FlutterError *_Nullable)onListenWithArguments:(id _Nullable)arguments
FIRSnapshotListenOptions *optionsWithSourceAndMetadata = [[options
optionsWithIncludeMetadataChanges:_includeMetadataChanges] optionsWithSource:_source];

self.listenerRegistration = [query addSnapshotListenerWithOptions:options listener:listener];
self.listenerRegistration = [query addSnapshotListenerWithOptions:optionsWithSourceAndMetadata
listener:listener];

return nil;
}
Expand Down

0 comments on commit 953bf92

Please sign in to comment.