From 12a96dcc6c6d88362a874c10a78d737e45fa3f01 Mon Sep 17 00:00:00 2001 From: zoechi Date: Fri, 16 Feb 2018 11:39:42 +0100 Subject: [PATCH] #fixes 14747 assert for Dart 2 --- lib/sentry.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sentry.dart b/lib/sentry.dart index 73d97cae55..7dc2e8c96b 100644 --- a/lib/sentry.dart +++ b/lib/sentry.dart @@ -77,7 +77,7 @@ class SentryClient { 'Project ID not found in the URI path of the DSN URI: $dsn'); return true; - }); + }()); final String publicKey = userInfo.first; final String secretKey = userInfo.last;