From 8551e56e4252ed99cf5183c8baf086647b1220c7 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Tue, 10 Aug 2021 11:50:03 +0200 Subject: [PATCH] Sentry: users: add authkey, username --- src/TSentry.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/TSentry.cpp b/src/TSentry.cpp index 22a8b7c..35cd3c9 100644 --- a/src/TSentry.cpp +++ b/src/TSentry.cpp @@ -14,6 +14,8 @@ TSentry::TSentry(const std::string& SentryUrl) { sentry_init(options); sentry_value_t user = sentry_value_new_object(); sentry_value_set_by_key(user, "id", sentry_value_new_string(Application::Settings.Key.c_str())); + sentry_value_set_by_key(user, "username", sentry_value_new_string(Application::Settings.Key.c_str())); + sentry_value_set_by_key(user, "authkey", sentry_value_new_string(Application::Settings.Key.c_str())); sentry_set_user(user); } }