Skip to content

Commit

Permalink
update colibri
Browse files Browse the repository at this point in the history
  • Loading branch information
cornerman committed Nov 12, 2023
1 parent 88206b8 commit d12e14e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clientNode/src/main/scala/Auth.scala
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class Auth(val auth: AuthAppConfig, appName: String, credentialsFileName: String
Some(User(userInfo, tokenGetter))
}
.replayLatest
.hot
.unsafeHot()
.recover { case t => // TODO: why does the recover need to be behind hot? colibri?
println("Error in user handling: " + t)
None
Expand Down
2 changes: 1 addition & 1 deletion clientWeb/src/main/scala/Auth.scala
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class Auth(val auth: AuthAppConfig, website: WebsiteAppConfig) extends funstack.
Some(User(userInfo, tokenGetter))
}
.replayLatest
.hot
.unsafeHot()
.recover { case t => // TODO: why does the recover need to be behind hot? colibri?
dom.console.error("Error in user handling: " + t)
cleanupLocalStorage()
Expand Down
2 changes: 1 addition & 1 deletion project/Deps.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object Deps {

// frp
val colibri = new {
val version = "0.7.8"
val version = "0.8.0"
val core = s("com.github.cornerman" %%% "colibri" % version)
val jsdom = s("com.github.cornerman" %%% "colibri-jsdom" % version)
}
Expand Down

0 comments on commit d12e14e

Please sign in to comment.