WebRequest.jsm should not await onSendHeaders event dispatch
Categories
(WebExtensions :: Request Handling, task, P5)
Tracking
(firefox86 fixed)
Tracking | Status | |
---|---|---|
firefox86 | --- | fixed |
People
(Reporter: robwu, Assigned: brendanatalia94, Mentored)
Details
(Keywords: good-first-bug)
Attachments
(1 file)
if (kind === "onBeforeSendHeaders" && this.listeners.onSendHeaders.size) {
await this.runChannelListener(channel, "onSendHeaders");
This await
should be removed because webRequest.onSendHeaders
is not a blocking listener. This event is informational only..
Updated•5 years ago
|
Reporter | ||
Comment 1•4 years ago
|
||
This is really easy to fix. Literally removing just one word.
This is a good first bug for those who want to get familiar with setting up a development environment and submitting a patch.
To get started, see https://wiki.mozilla.org/WebExtensions/Contribution_Onramp
Assignee | ||
Comment 2•4 years ago
|
||
Hi :robwu, I'm Brenda and I'm trying to enroll on outreachy, can I start my contribution with this one? Thanks in advance!
Hi :robwu , I am new to opensource and would like to contribute. But where do I do so? Do I do so from github?
Reporter | ||
Comment 4•4 years ago
|
||
(In reply to Brenda M Lima from comment #2)
Hi :robwu, I'm Brenda and I'm trying to enroll on outreachy, can I start my contribution with this one? Thanks in advance!
Yes you can.
(In reply to Rajreet from comment #3)
Hi :robwu , I am new to opensource and would like to contribute. But where do I do so? Do I do so from github?
Brenda, has expressed interest in this bug before, so I suggest that you try out a different good-first-bug bug (we have plenty).
To get started, see https://wiki.mozilla.org/WebExtensions/Contribution_Onramp
Assignee | ||
Comment 5•4 years ago
|
||
(In reply to Rob Wu [:robwu] from comment #4)
(In reply to Brenda M Lima from comment #2)
Hi :robwu, I'm Brenda and I'm trying to enroll on outreachy, can I start my contribution with this one? Thanks in advance!
Yes you can.
(In reply to Rajreet from comment #3)
Hi :robwu , I am new to opensource and would like to contribute. But where do I do so? Do I do so from github?
Brenda, has expressed interest in this bug before, so I suggest that you try out a different good-first-bug bug (we have plenty).
To get started, see https://wiki.mozilla.org/WebExtensions/Contribution_Onramp
Thanks, I'm on it
Assignee | ||
Comment 6•4 years ago
|
||
Updated•4 years ago
|
Comment 7•4 years ago
|
||
There's a r+ patch which didn't land and no activity in this bug for 2 weeks.
:brendanatalia94, could you have a look please?
For more information, please visit auto_nag documentation.
Comment 8•4 years ago
|
||
Hey Rob, can you please check if this is still good to land, and land it?
Reporter | ||
Updated•4 years ago
|
Comment 10•4 years ago
|
||
bugherder |
Comment 11•4 years ago
|
||
Thank you so much for the patch, Brenda! 🎉 Your contribution has been added to our recognition wiki at https://wiki.mozilla.org/Add-ons/Contribute/Recognition.
Hope to see you around the project in the future!
Description
•