diff options
Diffstat (limited to 'netwerk/protocol')
-rw-r--r-- | netwerk/protocol/http/Http2Stream.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/netwerk/protocol/http/Http2Stream.cpp b/netwerk/protocol/http/Http2Stream.cpp index 4401a2612..22d8142c9 100644 --- a/netwerk/protocol/http/Http2Stream.cpp +++ b/netwerk/protocol/http/Http2Stream.cpp @@ -1478,12 +1478,8 @@ bool Http2Stream::Do0RTT() { MOZ_ASSERT(mTransaction); - if mTransaction->Do0RTT() { - mAttempting0RTT = true; - } else { - mAttempting0RTT = false; - } - return mAttempting0RTT; + mAttempting0RTT = true; + return mTransaction->Do0RTT(); } nsresult |