diff --git a/OurUmbraco/Documentation/Busineslogic/GithubSourcePull/ZipDownloader.cs b/OurUmbraco/Documentation/Busineslogic/GithubSourcePull/ZipDownloader.cs index 59de1e07..0db8d1de 100644 --- a/OurUmbraco/Documentation/Busineslogic/GithubSourcePull/ZipDownloader.cs +++ b/OurUmbraco/Documentation/Busineslogic/GithubSourcePull/ZipDownloader.cs @@ -157,9 +157,15 @@ namespace OurUmbraco.Documentation.Busineslogic.GithubSourcePull public bool hasChildren { get; set; } public List directories { get; set; } - public string url => $"http://localhost:24292/documentation{this.path}/?altTemplate=Lesson"; + //public string url => $"http://localhost:24292/documentation{this.path}/?altTemplate=Lesson"; - //public string url => $"https://our.umbraco.org/documentation{this.path}/?altTemplate=Lesson"; + public string url + { + get + { + return string.Format("https://our.umbraco.org/documentation{0}/?altTemplate=Lesson", this.path); + } + } } private SiteMapItem GetFolderStructure(DirectoryInfo dir, string rootPath, int level)