Fix TypeError in handleBufferScrollTop
Fixes the following: TypeError: client is undefined
This commit is contained in:
parent
ed92c3c61a
commit
982a945932
1 changed files with 1 additions and 1 deletions
|
@ -934,7 +934,7 @@ export default class App extends Component {
|
||||||
|
|
||||||
var client = this.clients.get(buf.network);
|
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;
|
return;
|
||||||
}
|
}
|
||||||
if (this.endOfHistory.get(buf.id)) {
|
if (this.endOfHistory.get(buf.id)) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue