Skip to content

Commit

Permalink
fix the signature of getMediaInformation method
Browse files Browse the repository at this point in the history
  • Loading branch information
tanersener committed Jan 2, 2022
1 parent 8a00606 commit 2febafd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions flutter/flutter_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.2.1
- Fixes the signature of getMediaInformation method

## 0.2.0
- Implements execute methods
- Merges existing getSafParameter methods into a single method with a new openMode parameter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ class MethodChannelFFmpegKit extends FFmpegKitPlatform {
Future<Map<dynamic, dynamic>?> mediaInformationSessionGetMediaInformation(
int? sessionId) async =>
_channel.invokeMethod<Map<dynamic, dynamic>>(
'getMediaInformation(', {'sessionId': sessionId});
'getMediaInformation', {'sessionId': sessionId});

@override
Future<String?> getPackageName() async =>
Expand Down
2 changes: 1 addition & 1 deletion flutter/flutter_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ issue_tracker: https:/tanersener/ffmpeg-kit/issues
homepage: https:/tanersener/ffmpeg-kit
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 0.2.0
version: 0.2.1

environment:
sdk: ">=2.12.0 <3.0.0"
Expand Down

0 comments on commit 2febafd

Please sign in to comment.