Skip to content

Commit d12e14e

Browse files
committed
update colibri
1 parent 88206b8 commit d12e14e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

clientNode/src/main/scala/Auth.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class Auth(val auth: AuthAppConfig, appName: String, credentialsFileName: String
120120
Some(User(userInfo, tokenGetter))
121121
}
122122
.replayLatest
123-
.hot
123+
.unsafeHot()
124124
.recover { case t => // TODO: why does the recover need to be behind hot? colibri?
125125
println("Error in user handling: " + t)
126126
None

clientWeb/src/main/scala/Auth.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ class Auth(val auth: AuthAppConfig, website: WebsiteAppConfig) extends funstack.
184184
Some(User(userInfo, tokenGetter))
185185
}
186186
.replayLatest
187-
.hot
187+
.unsafeHot()
188188
.recover { case t => // TODO: why does the recover need to be behind hot? colibri?
189189
dom.console.error("Error in user handling: " + t)
190190
cleanupLocalStorage()

project/Deps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ object Deps {
1414

1515
// frp
1616
val colibri = new {
17-
val version = "0.7.8"
17+
val version = "0.8.0"
1818
val core = s("com.github.cornerman" %%% "colibri" % version)
1919
val jsdom = s("com.github.cornerman" %%% "colibri-jsdom" % version)
2020
}

0 commit comments

Comments
 (0)