Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
2m committed Oct 23, 2018
1 parent 2cc8113 commit 06a4e45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ micrositePalette := Map(

resolvers += Resolver.bintrayRepo("2m", "maven")
libraryDependencies ++= Seq(
"citywasp" %% "citywasp-api" % "1.1",
"citywasp" %% "citywasp-api" % "1.2",
"com.typesafe.akka" %% "akka-stream" % "2.5.17",
"com.typesafe.akka" %% "akka-http" % "10.1.5",
"de.heikoseeberger" %% "akka-http-circe" % "1.22.0",
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/Kabrioletas.scala
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class CabrioCheck extends Actor with ActorLogging {
val twitter = TwitterRestClient()
final val OpenCageDataKey = context.system.settings.config.getString("opencagedata.key")
final val CardIdToSearch = context.system.settings.config.getInt("kabrioletas.car-id")
final val PollInterval = context.system.settings.config.getDuration("kabrioletas.poll-duration").toScala
final val PollInterval = context.system.settings.config.getDuration("kabrioletas.poll-interval").toScala

var lastTweetAt: Instant = _

Expand Down

0 comments on commit 06a4e45

Please sign in to comment.