File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ class Constants {
8
8
}
9
9
10
10
// TODO remove version once #46609 is fixed
11
- const String kClientVersion = '5.0.32 ' ;
11
+ const String kClientVersion = '5.0.33 ' ;
12
12
const String kMinServerVersion = '5.0.4' ;
13
13
14
14
const String kAppName = 'Invoice Ninja' ;
Original file line number Diff line number Diff line change @@ -97,6 +97,9 @@ void main({bool isTesting = false}) async {
97
97
options.release = kClientVersion;
98
98
options.beforeSend = (SentryEvent event, {dynamic hint}) {
99
99
final state = store.state;
100
+ if (! state.account.reportErrors) {
101
+ return null ;
102
+ }
100
103
event = event.copyWith (
101
104
environment: '${state .environment }' .split ('.' ).last,
102
105
extra: < String , dynamic > {
Original file line number Diff line number Diff line change 1
1
name : invoiceninja_flutter
2
2
description : Client for Invoice Ninja
3
- version : 5.0.32+32
3
+ version : 5.0.33+33
4
4
author : Hillel Coren
5
5
homepage : https://invoiceninja.com
6
6
documentation : http://docs.invoiceninja.com
You can’t perform that action at this time.
0 commit comments