This commit is contained in:
JustArchi 2021-03-08 21:48:27 +01:00
parent 1f3a064dc0
commit d7c7b3813e
2 changed files with 1 additions and 2 deletions

View file

@ -63,7 +63,7 @@ namespace ArchiSteamFarm {
throw new InvalidOperationException(nameof(ASF.WebBrowser));
}
string url = SharedInfo.GithubWikiURL + "/" + page + (!string.IsNullOrEmpty(revision) ? "/" + revision : "");
string url = SharedInfo.ProjectURL + "/wiki/" + page + (!string.IsNullOrEmpty(revision) ? "/" + revision : "");
using WebBrowser.HtmlDocumentResponse? response = await ASF.WebBrowser.UrlGetToHtmlDocument(url).ConfigureAwait(false);

View file

@ -44,7 +44,6 @@ namespace ArchiSteamFarm {
internal const string EnvironmentVariablePath = ASF + "_PATH";
internal const string GithubReleaseURL = "https://api.github.com/repos/" + GithubRepo + "/releases";
internal const string GithubRepo = "JustArchiNET/" + AssemblyName;
internal const string GithubWikiURL = "https://github.com/" + GithubRepo + "/wiki";
internal const string GlobalConfigFileName = ASF + JsonConfigExtension;
internal const string GlobalDatabaseFileName = ASF + DatabaseExtension;
internal const string IPCConfigExtension = ".config";