Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
horymury committed Oct 14, 2021
1 parent 74d4ae8 commit 2ce976b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jitsi/jigasi/AudioModeration.java
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ public RaiseHandExtension()
*/
public ExtensionElement setRaisedHandValue(long value)
{
setText(value ? value.toString() : "0");
setText(value == null ? "0" : Long.toString(value));

return this;
}
Expand Down

0 comments on commit 2ce976b

Please sign in to comment.