Skip to content

Commit

Permalink
fixed issue 383
Browse files Browse the repository at this point in the history
  • Loading branch information
darwin-morocho committed Feb 20, 2024
1 parent c32b70b commit 8141f38
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
3 changes: 3 additions & 0 deletions facebook_auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 6.1.1
- Fixed [issue #383](https://github.com/darwin-morocho/flutter-facebook-auth/issues/383)

### 6.1.0
- Fixed [issue #389](https://github.com/darwin-morocho/flutter-facebook-auth/issues/389). Thanks to [potatojoayo](https://github.com/potatojoayo)

Expand Down
2 changes: 1 addition & 1 deletion facebook_auth/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_facebook_auth
description: The easiest way to add facebook login to your flutter app. Feature includes getting user information, profile picture and more. This plugin also supports Web and macOS.
version: 6.1.0
version: 6.1.1
homepage: https://github.com/darwin-morocho/flutter-facebook-auth

environment:
Expand Down
5 changes: 5 additions & 0 deletions facebook_auth_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@

### 5.0.1
- Updated js: ^0.7.1


### 5.0.0
- Use dart >=3.0.0 <4.0.0

Expand Down
2 changes: 1 addition & 1 deletion facebook_auth_web/lib/src/facebook_auth_plugin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ class FlutterFacebookAuthPlugin extends FacebookAuthPlatform {
status: LoginStatus.failed,
message: 'unknown error',
);
} on PlatformException catch (e, s) {
} on PlatformException catch (e, _) {
return LoginResult(
status: LoginStatus.failed,
message: e.message,
Expand Down
4 changes: 2 additions & 2 deletions facebook_auth_web/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_facebook_auth_web
description: web support for flutter_facebook_auth
version: 5.0.0
version: 5.0.1
homepage: https://github.com/darwin-morocho/flutter-facebook-auth/tree/master/facebook_auth_web


Expand All @@ -13,7 +13,7 @@ dependencies:
sdk: flutter
flutter_web_plugins:
sdk: flutter
js: ^0.6.3
js: ^0.7.1
flutter_facebook_auth_platform_interface: ^5.0.0

# flutter_facebook_auth_platform_interface:
Expand Down
2 changes: 1 addition & 1 deletion website/docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add the following to your `pubspec.yaml`

```yaml
dependencies:
flutter_facebook_auth: ^6.1.0
flutter_facebook_auth: ^6.1.1
```
Expand Down

0 comments on commit 8141f38

Please sign in to comment.