mirror of
https://git.sr.ht/~emersion/gamja
synced 2025-03-21 20:50:58 -04:00
s/var/let/
This commit is contained in:
parent
38a3075a2c
commit
a58befd6d7
1 changed files with 1 additions and 1 deletions
|
@ -732,7 +732,7 @@ export default class App extends Component {
|
|||
handleMessage(serverID, msg) {
|
||||
let client = this.clients.get(serverID);
|
||||
|
||||
var destBuffers = this.routeMessage(serverID, msg);
|
||||
let destBuffers = this.routeMessage(serverID, msg);
|
||||
|
||||
if (irc.findBatchByType(msg, "chathistory")) {
|
||||
destBuffers.forEach((bufName) => {
|
||||
|
|
Loading…
Reference in a new issue