aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-12-31 11:00:42 +0100
committerdec05eba <dec05eba@protonmail.com>2024-12-31 11:00:42 +0100
commit6dfa330997f5802d709baa6403b9214fa3823454 (patch)
treecd47f2723d3117a6112a9aa49de70583f3043664
parentd355bc991e38e96761d30b5444177be5b2d44412 (diff)
Fix incorrect icon used for notifications1.0.1
-rw-r--r--src/Overlay.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Overlay.cpp b/src/Overlay.cpp
index cbdf838..e897f5a 100644
--- a/src/Overlay.cpp
+++ b/src/Overlay.cpp
@@ -1211,7 +1211,7 @@ namespace gsr {
const char *notification_type_str = notification_type_to_string(notification_type);
if(notification_type_str) {
notification_args[9] = "--icon";
- notification_args[10] = "record",
+ notification_args[10] = notification_type_str;
notification_args[11] = nullptr;
} else {
notification_args[9] = nullptr;