Поправил обработку ошибок
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Struchkov Mark 2023-04-23 13:42:31 +03:00
parent 1dabb026f3
commit a616bd7787
Signed by: upagge
GPG Key ID: D3018BE7BA428CA6

View File

@ -100,6 +100,7 @@ public class GeneralAutoResponder<M extends Message> {
return Uni.createFrom().voidItem(); return Uni.createFrom().voidItem();
} }
) )
.onFailure(th -> checkNotNull(errorHandler)).recoverWithNull()
.replaceWithVoid(); .replaceWithVoid();
} }