mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 15:14:41 +00:00
Misc
This commit is contained in:
parent
1f3a064dc0
commit
d7c7b3813e
2 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue