forked from CringeStudios/gamja
Fix TypeError in handleBufferScrollTop
Fixes the following: TypeError: client is undefined
This commit is contained in:
parent
ed92c3c61a
commit
982a945932
@ -934,7 +934,7 @@ export default class App extends Component {
|
||||
|
||||
var client = this.clients.get(buf.network);
|
||||
|
||||
if (!client.enabledCaps["draft/chathistory"] || !client.enabledCaps["server-time"]) {
|
||||
if (!client || !client.enabledCaps["draft/chathistory"] || !client.enabledCaps["server-time"]) {
|
||||
return;
|
||||
}
|
||||
if (this.endOfHistory.get(buf.id)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user