Skip to content

Commit

Permalink
HTML変換時、スレを/1-で取得するように #6
Browse files Browse the repository at this point in the history
  • Loading branch information
onihusube committed Aug 23, 2022
1 parent 75c956a commit 9a37836
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion HtmlConverter/HtmltoDat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private set
/// <summary>
/// 指定されたスレのHTMLをdatへ変換する
/// </summary>
/// <param name="URI"></param>
/// <param name="URI">終端を/で終わらせること</param>
/// <param name="range"></param>
/// <param name="UA">使用しない。UAを受け取っていたが適切ではなかった</param>
/// <param name="CRReplace"></param>
Expand All @@ -88,6 +88,7 @@ public Byte[] Gethtml(String URI, int range, String UA, bool CRReplace, String L
System.Diagnostics.Debug.WriteLine($"Range:{range}, UA:{this.UserAgent}, CRReplace:{CRReplace}, LastMod:{LastMod}");

URI = URI.Replace("2ch.net", "5ch.net");
URI += "1-";

if (this.IsExternalConverterUse)
{
Expand Down

0 comments on commit 9a37836

Please sign in to comment.