mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-18 09:32:34 +00:00
FS-6806 #resolve #comment off by 1 error in last fix
This commit is contained in:
parent
bbe2531cb0
commit
b65939fc85
@ -2132,7 +2132,7 @@ static uint32_t sofia_presence_get_cseq(sofia_profile_t *profile)
|
||||
|
||||
if (profile->last_cseq) {
|
||||
diff = callsequence - profile->last_cseq;
|
||||
if (diff < 0 && diff > -100000) {
|
||||
if (diff <= 0 && diff > -100000) {
|
||||
callsequence = ++profile->last_cseq;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user