mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 04:23:13 +00:00
Fix missing channel name from invite notifications
This commit is contained in:
parent
71a4dde7ad
commit
af2c36e86e
1 changed files with 1 additions and 1 deletions
|
@ -775,7 +775,7 @@ $(function() {
|
|||
|
||||
if (msg.type === "invite") {
|
||||
title = "New channel invite:";
|
||||
body = msg.from + " invited you to " + msg.text;
|
||||
body = msg.from + " invited you to " + msg.channel;
|
||||
} else {
|
||||
title = msg.from;
|
||||
if (!isQuery) {
|
||||
|
|
Loading…
Reference in a new issue