Skip to content
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.

v0.3.3 — Fixed missing options param #8

Merged
merged 2 commits into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.3.3
- Fixed missing options param

## 0.3.2
- Added `RestrrBuilder#refresh`
- Fixed `RestrrOptions` and added `isWeb` attribute
Expand Down
2 changes: 1 addition & 1 deletion lib/src/restrr_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class RestrrBuilder {
}

Future<RestResponse<RestrrImpl>> _handleRefresh() async {
final RestrrImpl api = RestrrImpl._();
final RestrrImpl api = RestrrImpl._(options: options);
final RestResponse<User> response = await UserService(api: api).getSelf();
if (response.hasError) {
Restrr.log.warning('Failed to refresh session');
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
Loading