Skip to content

Commit

Permalink
fix: windows native method need default result (#943)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangbax committed Jul 21, 2022
1 parent 5fff088 commit 5a205e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,7 @@
* Maps with Key Object, Object would fail during serialization if not String, Object ([#935](https://github.com/getsentry/sentry-dart/pull/935))
* Breadcrumbs "Concurrent Modification" ([#948](https://github.com/getsentry/sentry-dart/pull/948))
* Duplicative Screen size changed breadcrumbs ([#888](https://github.com/getsentry/sentry-dart/pull/888))
* Fix windows native method need default result ([#943](https://github.com/getsentry/sentry-dart/pull/943))

### Features

Expand Down
1 change: 1 addition & 0 deletions flutter/windows/sentry_flutter_plugin.cpp
Expand Up @@ -57,6 +57,7 @@ void SentryFlutterPlugin::HandleMethodCall(
const flutter::MethodCall<flutter::EncodableValue> &method_call,
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result) {
// Native features will be added in a next release
result->NotImplemented();
}

} // namespace
Expand Down

0 comments on commit 5a205e7

Please sign in to comment.