aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/base/QXmppStun.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/QXmppStun.cpp b/src/base/QXmppStun.cpp
index 0083ba9d..793b207c 100644
--- a/src/base/QXmppStun.cpp
+++ b/src/base/QXmppStun.cpp
@@ -1576,7 +1576,7 @@ private:
static bool candidatePairPtrLessThan(const CandidatePair *p1, const CandidatePair *p2)
{
- return p1->priority() < p2->priority();
+ return p1->priority() > p2->priority();
}
CandidatePair::CandidatePair(int component, bool controlling, QObject *parent)