Skip to content

Commit

Permalink
Fix output for moderators
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Rogers committed Mar 24, 2017
1 parent e741fc2 commit 518a2d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private static String buildOutput(
output.append("SUPERCHAT RECEIVED FROM ");
}
output.append(author.getDisplayName());
if (author.getIsChatOwner() || author.getIsChatOwner() || author.getIsChatSponsor()) {
if (author.getIsChatOwner() || author.getIsChatModerator() || author.getIsChatSponsor()) {
output.append(" (");
boolean appendComma = false;
if (author.getIsChatOwner()) {
Expand Down

0 comments on commit 518a2d3

Please sign in to comment.