From 284ca67dd3ad1b82f0d284f3dbef9c823c3b7e20 Mon Sep 17 00:00:00 2001 From: Warren Buckley Date: Sun, 4 Jun 2017 16:40:51 +0100 Subject: [PATCH] Adds trailing slash to ensure all links work as expected when we start off at index.md --- .../Busineslogic/GithubSourcePull/ZipDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OurUmbraco/Documentation/Busineslogic/GithubSourcePull/ZipDownloader.cs b/OurUmbraco/Documentation/Busineslogic/GithubSourcePull/ZipDownloader.cs index 2ffd7916..f881ac9a 100644 --- a/OurUmbraco/Documentation/Busineslogic/GithubSourcePull/ZipDownloader.cs +++ b/OurUmbraco/Documentation/Busineslogic/GithubSourcePull/ZipDownloader.cs @@ -156,7 +156,7 @@ namespace OurUmbraco.Documentation.Busineslogic.GithubSourcePull public int sort { get; set; } public bool hasChildren { get; set; } public List directories { get; set; } - public string url => $"https://our.umbraco.org/documentation{this.path}?altTemplate=Lesson"; + public string url => $"https://our.umbraco.org/documentation{this.path}/?altTemplate=Lesson"; } private SiteMapItem GetFolderStructure(DirectoryInfo dir, string rootPath, int level)