reporting: prevent noisy reports

This commit is contained in:
Thibault Deckers 2024-02-04 22:43:48 +01:00
parent e57484d912
commit d060a051ef
2 changed files with 7 additions and 1 deletions

View file

@ -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

View file

@ -78,6 +78,8 @@ class PlatformReportService extends ReportService {
@override @override
Future<void> recordFlutterError(FlutterErrorDetails flutterErrorDetails) async { Future<void> recordFlutterError(FlutterErrorDetails flutterErrorDetails) async {
if (!flutterErrorDetails.silent) {
return _instance?.recordFlutterError(flutterErrorDetails); return _instance?.recordFlutterError(flutterErrorDetails);
} }
}
} }