diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/QXmppRtpChannel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/QXmppRtpChannel.cpp b/src/QXmppRtpChannel.cpp index 820be1b7..ba1df1bd 100644 --- a/src/QXmppRtpChannel.cpp +++ b/src/QXmppRtpChannel.cpp @@ -162,7 +162,7 @@ void QXmppRtpChannel::datagramReceived(const QByteArray &ba) } // check sequence number - if (!marker && sequence != d->incomingSequence + 1) + if (d->incomingSequence && sequence != d->incomingSequence + 1) warning(QString("RTP packet seq %1 is out of order, previous was %2") .arg(QString::number(sequence)) .arg(QString::number(d->incomingSequence))); |
