diff --git a/app/controllers/User.scala b/app/controllers/User.scala index 49d8b4209b..74cdbfc1a8 100644 --- a/app/controllers/User.scala +++ b/app/controllers/User.scala @@ -54,7 +54,7 @@ object User extends LilaController { followable <- ctx.isAuth ?? { Env.pref.api.followable(user.id) } relation <- ctx.userId ?? { relationApi.fetchRelation(_, user.id) } res <- negotiate( - html = GameRepo lastPlayedPlaying user map { pov => + html = !ctx.is(user) ?? GameRepo.lastPlayedPlaying(user) map { pov => Ok(html.user.mini(user, pov, blocked, followable, relation, crosstable)) .withHeaders(CACHE_CONTROL -> "max-age=5") },