Skip to content

Commit

Permalink
Fix windows compilation failed x2
Browse files Browse the repository at this point in the history
  • Loading branch information
apa420 committed Feb 7, 2025
1 parent dda20e5 commit 535c86e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/singletons/Toasts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ void Toasts::sendChannelNotification(const QString &channelName,
const QString &channelTitle)
{
#ifdef Q_OS_WIN
auto sendChannelNotification = [this, channelName, channelTitle, p] {
this->sendWindowsNotification(channelName, channelTitle, p);
auto sendChannelNotification = [this, channelName, channelTitle] {
this->sendWindowsNotification(channelName, channelTitle);
};
#else
(void)channelTitle;
Expand Down

0 comments on commit 535c86e

Please sign in to comment.