This commit is contained in:
takezoe
2013-06-25 13:55:13 +09:00
3 changed files with 26 additions and 4 deletions

View File

@@ -50,7 +50,10 @@ trait IssuesControllerBase extends ControllerBase {
val issueId = params("id")
getIssue(owner, repository, issueId) map {
issues.html.issue(_, getRepository(owner, repository, baseUrl).get)
issues.html.issue(
_,
getComment(owner, repository, issueId.toInt),
getRepository(owner, repository, baseUrl).get)
} getOrElse NotFound
}