Skip to content

Commit

Permalink
Update pages-wo-iwiki.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Saisengen committed Mar 9, 2024
1 parent ff1d138 commit a415c7c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web-services/pages-wo-iwiki/pages-wo-iwiki.cs
Expand Up @@ -51,7 +51,10 @@ static void gather_quality_pages(List<string> list_of_quality_pages, string wd_i
}
static void sendresponse(string sourcewiki, string category, string template, string targetwiki, string type, string pagetype, string sort, bool wikilist, bool wikitable, int depth, int miniwiki, string result)
{
var sr = new StreamReader("pages-wo-iwiki.html");
string strExeFilePath = System.Reflection.Assembly.GetExecutingAssembly().Location;
string? strWorkPath = Path.GetDirectoryName(strExeFilePath);
string strHtmlPath = Path.Combine(strWorkPath!, "pages-wo-iwiki.html");
var sr = new StreamReader(strHtmlPath);
string resulttext;

if (type == "exist")
Expand Down

0 comments on commit a415c7c

Please sign in to comment.