Skip to content

Commit 5a205e7

Browse files
authored
fix: windows native method need default result (#943)
1 parent 5fff088 commit 5a205e7

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* Maps with Key Object, Object would fail during serialization if not String, Object ([#935](https://github.com/getsentry/sentry-dart/pull/935))
88
* Breadcrumbs "Concurrent Modification" ([#948](https://github.com/getsentry/sentry-dart/pull/948))
99
* Duplicative Screen size changed breadcrumbs ([#888](https://github.com/getsentry/sentry-dart/pull/888))
10+
* Fix windows native method need default result ([#943](https://github.com/getsentry/sentry-dart/pull/943))
1011

1112
### Features
1213

flutter/windows/sentry_flutter_plugin.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ void SentryFlutterPlugin::HandleMethodCall(
5757
const flutter::MethodCall<flutter::EncodableValue> &method_call,
5858
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result) {
5959
// Native features will be added in a next release
60+
result->NotImplemented();
6061
}
6162

6263
} // namespace

0 commit comments

Comments
 (0)