Skip to content

Commit

Permalink
関数名の間違い修正
Browse files Browse the repository at this point in the history
  • Loading branch information
onihusube committed Jul 12, 2023
1 parent 870ad0d commit b5b0277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 2chAPIProxy/DatProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public DatProxy(String Akey, String Hkey, String ua1, String sidUA, String ua2,
string thread_key = match.Groups[3].Value;
// https://鯖名.5ch.net/板名/oyster/スレッドキー上位4桁の数字/スレッドキー.dat の形式に変換
oSession.fullUrl = @$"https://{match.Groups[1].Value}/{match.Groups[2].Value}/oyster/{thread_key.substring(0, 4)}/{thread_key}.dat";
oSession.fullUrl = @$"https://{match.Groups[1].Value}/{match.Groups[2].Value}/oyster/{thread_key.Substring(0, 4)}/{thread_key}.dat";
// レスポンス返し直前に介入する
oSession.bBufferResponse = true;
Expand Down

0 comments on commit b5b0277

Please sign in to comment.