My first compiling (but incorrect) line change

This commit is contained in:
Mark Henle 2016-09-12 17:45:40 -04:00
parent 30cf483b45
commit c33923499f

View file

@ -22,7 +22,10 @@ object Message extends LilaController {
def inbox(page: Int) = Auth { implicit ctx =>
me =>
NotForKids {
api.inbox(me, page) map { html.message.inbox(me, _) }
negotiate (
html = api.inbox(me, page) map { html.message.inbox(me, _) },
api = _ => api.inbox(me, page) map { html.message.inbox(me, _) }
)
}
}