We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cefed2 commit 745619fCopy full SHA for 745619f
lib/sentry.dart
@@ -159,10 +159,9 @@ class SentryClient {
159
160
/// Reports an [event] to Sentry.io.
161
Future<SentryResponse> capture({@required Event event}) async {
162
-
163
final DateTime now = _clock();
164
String authHeader = 'Sentry sentry_version=6, sentry_client=$sentryClient, '
165
- 'sentry_timestamp=${now.millisecondsSinceEpoch}, sentry_key=$publicKey';
+ 'sentry_timestamp=${now.millisecondsSinceEpoch}, sentry_key=$publicKey';
166
if (secretKey != null) {
167
authHeader += ', sentry_secret=$secretKey';
168
}
0 commit comments