Skip to content

Commit c4a739e

Browse files
committed
use cancel(message, cause)
1 parent 47673f6 commit c4a739e

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

firebase-firestore/ktx/src/main/kotlin/com/google/firebase/firestore/ktx/Firestore.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ fun DocumentReference.toFlow(
191191
val flow = callbackFlow {
192192
val registration = addSnapshotListener(metadataChanges) { snapshot, exception ->
193193
if (exception != null) {
194-
cancel(CancellationException("Error getting DocumentReference snapshot", exception))
194+
cancel(message = "Error getting DocumentReference snapshot", cause = exception)
195195
}
196196

197197
if (snapshot != null) {
@@ -225,7 +225,7 @@ fun Query.toFlow(
225225
val flow = callbackFlow {
226226
val registration = addSnapshotListener(metadataChanges) { snapshot, exception ->
227227
if (exception != null) {
228-
cancel(CancellationException("Error getting Query snapshot", exception))
228+
cancel(message = "Error getting Query snapshot", cause = exception)
229229
}
230230

231231
if (snapshot != null) {

0 commit comments

Comments
 (0)