mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
No issue - Fix unsafe http methods on HTTP/2 with TLSv1.3 0RTT.
This commit is contained in:
parent
a448ed3c0c
commit
c8f73fb28e
1 changed files with 6 additions and 2 deletions
|
|
@ -1478,8 +1478,12 @@ bool
|
|||
Http2Stream::Do0RTT()
|
||||
{
|
||||
MOZ_ASSERT(mTransaction);
|
||||
mAttempting0RTT = true;
|
||||
return mTransaction->Do0RTT();
|
||||
if (mTransaction->Do0RTT()) {
|
||||
mAttempting0RTT = true;
|
||||
} else {
|
||||
mAttempting0RTT = false;
|
||||
}
|
||||
return mAttempting0RTT;
|
||||
}
|
||||
|
||||
nsresult
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue