Skip to content

Commit

Permalink
Merge pull request #543 from coasys/connect-fix
Browse files Browse the repository at this point in the history
Fix ad4m-connect bug introduced in PR#532
  • Loading branch information
lucksus authored Dec 19, 2024
2 parents 69e747b + 0579159 commit 9995cff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ This project _loosely_ adheres to [Semantic Versioning](https://semver.org/spec/
- ad4m.expression.get() handles literal values client-side to avoid roundtrips, can be overridden with optional flag [PR#498](https://github.com/coasys/ad4m/pull/498)
- Update to Holochain 0.3.2-rc1 [PR#506](https://github.com/coasys/ad4m/pull/506)
- Make Prolog engine update O(1) in case of only having link additions [PR#510](https://github.com/coasys/ad4m/pull/510)
- Have Ad4mConnect set `authState` to `authenticated` on successful connection [PR#532](https://github.com/coasys/ad4m/pull/532)
- Have Ad4mConnect set `authState` to `authenticated` on successful connection [PR#532](https://github.com/coasys/ad4m/pull/532) & [PR#543](https://github.com/coasys/ad4m/pull/543)

## [0.9.0] - 23/03/2024

Expand Down
2 changes: 1 addition & 1 deletion connect/src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export default class Ad4mConnect {
},
connected: () => {
this.notifyConnectionChange("connected");
this.notifyAuthChange("authenticated");
this.checkAuth();
},
closed: async () => {
if (!this.requestedRestart) {
Expand Down

0 comments on commit 9995cff

Please sign in to comment.