Skip to content

Commit

Permalink
fix reference to __current_channel
Browse files Browse the repository at this point in the history
Signed-off-by: Gerard Hickey <[email protected]>
  • Loading branch information
hickey committed Feb 14, 2024
1 parent c9b5157 commit 2f7b026
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
</span>
Channel:
<select id="channels">
<option value="">
<option value="" selected>
Everything
</option>
</select>
Expand Down
2 changes: 1 addition & 1 deletion www/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ class Messages {
}
}

if (channel == message.channel || this.__channel == '') {
if (channel == message.channel || this.__current_channel == '') {
html += this.render_row(message);
}
}
Expand Down

0 comments on commit 2f7b026

Please sign in to comment.