Skip to content

Commit 2391850

Browse files
committed
Fix drag events stream not registered in Android (#984)
1 parent e4a0cac commit 2391850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/AnnotationController.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ class AnnotationController(
295295
}
296296
}
297297
AnnotationInteractionEventsStreamHandler.register(messenger, tapEvents, "$channelName/tap")
298-
AnnotationInteractionEventsStreamHandler.register(messenger, tapEvents, "$channelName/drag")
298+
AnnotationInteractionEventsStreamHandler.register(messenger, dragEvents, "$channelName/drag")
299299
AnnotationInteractionEventsStreamHandler.register(messenger, longPressEvents, "$channelName/long_press")
300300
}
301301
}

0 commit comments

Comments
 (0)