fix(chat): fix wrong copy-pasta

ChatColumnView: ReferenceError: chatLoader is not defined
This commit is contained in:
Stefan Dunca 2022-03-11 14:45:43 +01:00 committed by Iuri Matias
parent d12eb552f1
commit ddeda6c106
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ Item {
target: categoryChatLoader
// First time this channel turns active, activate the Loader
onIsActiveChannelChanged: {
if (chatLoader.isActiveChannel) {
if (categoryChatLoader.isActiveChannel) {
categoryChatLoader.active = true
loaderConnections.enabled = false
}