| Index: net/quic/quic_packet_creator.cc
|
| diff --git a/net/quic/quic_packet_creator.cc b/net/quic/quic_packet_creator.cc
|
| index 9d4725636b5e3a2697152649c6d6e9aaf67a04e9..97c4c18573f24c8ab4accf0f94c6423e0354a1f4 100644
|
| --- a/net/quic/quic_packet_creator.cc
|
| +++ b/net/quic/quic_packet_creator.cc
|
| @@ -90,7 +90,7 @@ bool QuicPacketCreator::ShouldSendFec(bool force_close) const {
|
|
|
| void QuicPacketCreator::MaybeStartFEC() {
|
| // Don't send FEC until QUIC_VERSION_15.
|
| - if (framer_->version() > QUIC_VERSION_14 &&
|
| + if (framer_->version() != QUIC_VERSION_13 &&
|
| options_.max_packets_per_fec_group > 0 && fec_group_.get() == NULL) {
|
| DCHECK(queued_frames_.empty());
|
| // Set the fec group number to the sequence number of the next packet.
|
|
|