mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 12:29:26 +00:00
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
this.onpush = function(event) {
|
|
var request = event.data.json();
|
|
if (request.type == "exception") {
|
|
throw new Error("Uncaught exception");
|
|
}
|
|
if (request.type == "rejection") {
|
|
event.waitUntil(Promise.reject(
|
|
new Error("Unhandled rejection")));
|
|
}
|
|
};
|