Skip to content
This repository has been archived by the owner on Sep 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #409 from akkie/master
Browse files Browse the repository at this point in the history
Fixes #406
  • Loading branch information
akkie committed Sep 20, 2015
2 parents 5b88c8c + 452ab60 commit f838746
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project/BuildSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ object BasicSettings extends AutoPlugin {

override def projectSettings = Seq(
organization := "com.mohiva",
version := "3.0.2",
version := "3.0.3",
resolvers ++= Dependencies.resolvers,
scalaVersion := Dependencies.Versions.scalaVersion,
crossScalaVersions := Dependencies.Versions.crossScala,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ trait Silhouette[I <: Identity, A <: Authenticator] extends Controller with Logg
case (Some(authenticator), identity) if !authenticator.extract.isValid =>
block(UserAwareRequest(None, None, request)).flatMap {
case hr @ HandlerResult(pr, d) =>
env.authenticatorService.discard(authenticator.extract, pr).map(r => hr.copy(pr))
env.authenticatorService.discard(authenticator.extract, pr).map(r => hr.copy(r))
}
// No authenticator and no user was found
case _ =>
Expand Down

0 comments on commit f838746

Please sign in to comment.