Unverified Commit 05009624 authored by Sam Rawlins's avatar Sam Rawlins Committed by GitHub

Return null rather than fall off nullable onError catchError handler. (#111581)

parent edf730c0
......@@ -281,6 +281,7 @@ abstract class Domain {
return null;
}).catchError((Object error, StackTrace stackTrace) {
daemon.connection.sendErrorResponse(id, _toJsonable(error), stackTrace);
return null;
});
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment