notifications: use message/title directly instead of binding to it, because it breaks snoozed notifications (#8609)

This commit is contained in:
Andrey Nekrasov
2020-12-15 19:59:56 +03:00
committed by GitHub
parent 212ea2de30
commit 445c32c996
2 changed files with 9 additions and 20 deletions

View File

@@ -62,6 +62,5 @@ namespace notifications
void show_toast(std::wstring plaintext_message, std::wstring title, toast_params params = {});
void show_toast_with_activations(std::wstring plaintext_message, std::wstring title, std::wstring_view background_handler_id, std::vector<action_t> actions, toast_params params = {});
void update_toast_progress_bar(std::wstring_view tag, progress_bar_params params);
void update_toast_contents(std::wstring_view tag, std::wstring plaintext_message, std::wstring title);
void remove_toasts(std::wstring_view tag);
}