diff --git a/BigBaseV2/src/services/notifications/notification_service.cpp b/BigBaseV2/src/services/notifications/notification_service.cpp index a4c908c3..1723b4f1 100644 --- a/BigBaseV2/src/services/notifications/notification_service.cpp +++ b/BigBaseV2/src/services/notifications/notification_service.cpp @@ -14,7 +14,7 @@ namespace big void notification_service::push(notification n) { - this->notifications.emplace(std::hash{}(n.message), n); + this->notifications.emplace(std::hash{}(n.message + n.title), n); } void notification_service::push(std::string title, std::string message)