Sentry: remove IP from user data

This commit is contained in:
Lion Kortlepel
2021-08-10 11:24:09 +02:00
committed by Lion
parent e3081a971e
commit ee1e948a65

View File

@@ -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);
}
}