diff --git a/CHANGELOG.md b/CHANGELOG.md index f315f9e..ac1da61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.3.3 +- Fixed missing options param + ## 0.3.2 - Added `RestrrBuilder#refresh` - Fixed `RestrrOptions` and added `isWeb` attribute diff --git a/lib/src/restrr_base.dart b/lib/src/restrr_base.dart index b901496..cc833b3 100644 --- a/lib/src/restrr_base.dart +++ b/lib/src/restrr_base.dart @@ -104,7 +104,7 @@ class RestrrBuilder { } Future> _handleRefresh() async { - final RestrrImpl api = RestrrImpl._(); + final RestrrImpl api = RestrrImpl._(options: options); final RestResponse response = await UserService(api: api).getSelf(); if (response.hasError) { Restrr.log.warning('Failed to refresh session'); diff --git a/pubspec.yaml b/pubspec.yaml index 9fafb8b..a921a5b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: restrr description: Dart package which allows to communicate with the financrr REST API. -version: 0.3.2 +version: 0.3.3 repository: https://github.com/financrr/restrr environment: