From c31e248a03db90d7e123b85028d828e24b8c9d56 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Wed, 10 Jun 2015 10:01:41 +0200 Subject: [PATCH] fix redirect --- app/Controller/Github/RepoHook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controller/Github/RepoHook.php b/app/Controller/Github/RepoHook.php index 6bef009..96240f6 100644 --- a/app/Controller/Github/RepoHook.php +++ b/app/Controller/Github/RepoHook.php @@ -17,7 +17,7 @@ class RepoHook extends Github ])); } else { $this->changeHook($args)->done(function() use($args) { - $this->redirectBack($args["owner"]."/".$args["repo"]); + $this->redirectBack($args["owner"]."/".$args["name"]); }); $this->github->drain(); } -- 2.30.2