fix: cannot set priority to 0 if status message is omitted or $show is set to "available"
This commit is contained in:
parent
8cf43499f4
commit
94d3a03794
@ -196,7 +196,7 @@ class XMPPHP_XMPP extends XMPPHP_XMLStream {
|
|||||||
$out = "<presence";
|
$out = "<presence";
|
||||||
if($to) $out .= " to=\"$to\"";
|
if($to) $out .= " to=\"$to\"";
|
||||||
if($type) $out .= " type='$type'";
|
if($type) $out .= " type='$type'";
|
||||||
if($show == 'available' and !$status and !$priority) {
|
if($show == 'available' and !$status and $priority !== null) {
|
||||||
$out .= "/>";
|
$out .= "/>";
|
||||||
} else {
|
} else {
|
||||||
$out .= ">";
|
$out .= ">";
|
||||||
|
Loading…
Reference in New Issue
Block a user