Skip to content

Commit

Permalink
Fixed the case where the backend returns an empty string instead of a…
Browse files Browse the repository at this point in the history
… Map.
  • Loading branch information
ybeshkarov committed Feb 26, 2024
1 parent 117cd03 commit d46da55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/service/user_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class UserService {
return response.data != null
? MobileSessionInfo.fromJson(response.data!)
: null;
} on Exception catch (_) {
} catch (_) {
return null;
}
}
Expand Down

0 comments on commit d46da55

Please sign in to comment.