From 42cda384c890202aa8d46d4ce21518dc39e5c03b Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 22 May 2015 07:15:40 +0200 Subject: [PATCH] Fix help routes --- app/Helpers/Help/Help.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Helpers/Help/Help.php b/app/Helpers/Help/Help.php index 39628ea108..b8516a8704 100644 --- a/app/Helpers/Help/Help.php +++ b/app/Helpers/Help/Help.php @@ -37,7 +37,7 @@ class Help implements HelpInterface */ public function getFromGithub($route) { - $uri = 'https://raw.githubusercontent.com/JC5/firefly-iii-help/master/' . e($route) . '.md'; + $uri = 'https://raw.githubusercontent.com/JC5/firefly-iii-help/master/en/' . e($route) . '.md'; $content = [ 'text' => '

There is no help for this route!

', 'title' => $route,