mirror of
https://github.com/hanskokx/arcane_framework.git
synced 2026-05-14 02:19:08 +02:00
@@ -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
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user