Emit warning when dispatching event to null target

Reviewed By: ShikaSD

Differential Revision: D33767454

fbshipit-source-id: c2f10b6b857544c06780fb13b66417d12f9b8d2c
This commit is contained in:
Pieter De Baets 2022-01-26 10:58:55 -08:00 коммит произвёл Facebook GitHub Bot
Родитель 420caeaa26
Коммит 86fa2a5106
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -124,6 +124,10 @@ void UIManagerBinding::dispatchEvent(
}()
: jsi::Value::null();
if (instanceHandle.isNull()) {
LOG(WARNING) << "instanceHandle is null, event will be dropped";
}
auto &eventHandlerWrapper =
static_cast<EventHandlerWrapper const &>(*eventHandler_);