mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-15 21:57:10 +02:00
Fix NotificationData initialization
This commit is contained in:
parent
b2481ea6c1
commit
5dbe429e6b
1 changed files with 2 additions and 1 deletions
|
@ -541,7 +541,8 @@ void Manager::Private::showNotification(
|
|||
? info.title.toStdString()
|
||||
: info.subtitle.toStdString()
|
||||
+ " (" + info.title.toStdString() + ')'))
|
||||
: std::variant<Notification, Gio::Notification>(Notification{});
|
||||
: std::variant<Notification, Gio::Notification>(
|
||||
std::make_unique<NotificationData>());
|
||||
|
||||
std::vector<gi::cstring> actions;
|
||||
auto hints = GLib::VariantDict::new_();
|
||||
|
|
Loading…
Add table
Reference in a new issue