Skip to content

Commit

Permalink
fix(backend.viewresolver): resolve to index instead forward to avoid …
Browse files Browse the repository at this point in the history
…infinite redirection loop
  • Loading branch information
davinkevin committed May 15, 2015
1 parent 6568220 commit 52a0ba4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ public class HomeController {

@RequestMapping(value = {"", "items", "podcasts", "podcasts/**", "player", "podcast-creation", "download", "stats"})
private String home() {
return "forward:/";
return "index";
}
}

0 comments on commit 52a0ba4

Please sign in to comment.