Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix failing tests
  • Loading branch information
zeusbaba committed Mar 5, 2021
commit e16b4fa342b1d8edbef79e1b9929ef2aac8e9497
2 changes: 1 addition & 1 deletion flutter/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ Future<void> makeWebRequest(BuildContext context) async {
final client = SentryHttpClient();
// We don't do any exception handling here.
// In case of an exception, let it get caught and reported to Sentry
final response = await client.get('https://flutter.dev/');
final response = await client.get(Uri.parse('https://flutter.dev/'));

await showDialog<void>(
context: context,
Expand Down
2 changes: 1 addition & 1 deletion flutter/lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// The SDK version reported to Sentry.io in the submitted events.
const String sdkVersion = '4.0.7';
const String sdkVersion = '4.0.8';

/// The default SDK name reported to Sentry.io in the submitted events.
const String sdkName = 'sentry.dart.flutter';