From ee1e948a659369d05deb4ccf5dca541f916fe767 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Tue, 10 Aug 2021 11:24:09 +0200 Subject: [PATCH] Sentry: remove IP from user data --- src/TSentry.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/TSentry.cpp b/src/TSentry.cpp index 094bcea..22a8b7c 100644 --- a/src/TSentry.cpp +++ b/src/TSentry.cpp @@ -14,7 +14,6 @@ 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, "ip_address", sentry_value_new_string("{{auto}}")); sentry_set_user(user); } }