Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2024-09-18 11:05:11 +02:00
parent e6b2442eea
commit 03e3a0bcbd
3 changed files with 7 additions and 6 deletions
+3
View File
@@ -1,3 +1,6 @@
## 1.0.4
* Resolved an issue with authentication using the ArcaneAuthenticationService when logging in with an email and password
## 1.0.3+1 ## 1.0.3+1
@@ -186,13 +186,11 @@ class ArcaneAuthenticationService extends ArcaneService {
password: password, password: password,
); );
if (result.isFailure) { if (result.isSuccess) {
throw Exception(result.error); setAuthenticated();
if (onLoggedIn != null) await onLoggedIn();
} }
setAuthenticated();
if (onLoggedIn != null) await onLoggedIn();
return result; return result;
} }
+1 -1
View File
@@ -1,6 +1,6 @@
name: arcane_framework name: arcane_framework
description: "Agnostic Reusable Component Architecture for New Ecosystems: a modern framework for bootstrapping new applications" description: "Agnostic Reusable Component Architecture for New Ecosystems: a modern framework for bootstrapping new applications"
version: 1.0.3+1 version: 1.0.4
repository: https://github.com/hanskokx/arcane_framework repository: https://github.com/hanskokx/arcane_framework
issue_tracker: https://github.com/hanskokx/arcane_framework/issues issue_tracker: https://github.com/hanskokx/arcane_framework/issues