5f7841526f20f9ea4f7f617bd4ecbf30e3a45872
``` result = Promise.all([<Promise that rejects eventually>]) # rejection 1 result.then () -> RoomEvents.emit(eventName) # rejection 2 result.catch (err) -> RoomEvents.emit(eventName, err) # handle r1 ``` As shown above, the second rejection remains unhandled. The fix is to chain the `.catch()` onto the `.then()` Promise.
Description
Languages
JavaScript
62.6%
TypeScript
29.5%
SCSS
2.9%
Java
2.1%
Pug
0.8%
Other
1.9%