File tree 1 file changed +2
-2
lines changed
firebase-firestore/ktx/src/main/kotlin/com/google/firebase/firestore/ktx
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ fun DocumentReference.toFlow(
191
191
val flow = callbackFlow {
192
192
val registration = addSnapshotListener(metadataChanges) { snapshot, exception ->
193
193
if (exception != null ) {
194
- cancel(CancellationException ( " Error getting DocumentReference snapshot" , exception) )
194
+ cancel(message = " Error getting DocumentReference snapshot" , cause = exception)
195
195
}
196
196
197
197
if (snapshot != null ) {
@@ -225,7 +225,7 @@ fun Query.toFlow(
225
225
val flow = callbackFlow {
226
226
val registration = addSnapshotListener(metadataChanges) { snapshot, exception ->
227
227
if (exception != null ) {
228
- cancel(CancellationException ( " Error getting Query snapshot" , exception) )
228
+ cancel(message = " Error getting Query snapshot" , cause = exception)
229
229
}
230
230
231
231
if (snapshot != null ) {
You can’t perform that action at this time.
0 commit comments