reporting: prevent noisy reports
This commit is contained in:
parent
e57484d912
commit
d060a051ef
2 changed files with 7 additions and 1 deletions
|
@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## <a id="unreleased"></a>[Unreleased]
|
## <a id="unreleased"></a>[Unreleased]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- motion photo detection for xml variant of google container item
|
||||||
|
|
||||||
## <a id="v1.10.3"></a>[v1.10.3] - 2024-01-29
|
## <a id="v1.10.3"></a>[v1.10.3] - 2024-01-29
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -78,6 +78,8 @@ class PlatformReportService extends ReportService {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<void> recordFlutterError(FlutterErrorDetails flutterErrorDetails) async {
|
Future<void> recordFlutterError(FlutterErrorDetails flutterErrorDetails) async {
|
||||||
return _instance?.recordFlutterError(flutterErrorDetails);
|
if (!flutterErrorDetails.silent) {
|
||||||
|
return _instance?.recordFlutterError(flutterErrorDetails);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue