Skip to content

Commit

Permalink
診断リクエストのパラメータ名変更に対応
Browse files Browse the repository at this point in the history
  • Loading branch information
shibafu528 committed Aug 9, 2021
1 parent ed25f49 commit 298a110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ publishing {
mavenJava(MavenPublication) {
groupId 'info.shibafu528.shindan4j'
artifactId 'shindan4j'
version '0.3.0'
version '0.3.1'

from components.java
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/info/shibafu528/shindan4j/ShindanPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public ShindanResult shindan(String name) throws IOException {
.timeout(ShindanMaker.getTimeout())
.cookies(session.cookies)
.data("_token", session.token)
.data("name", name)
.data("shindanName", name)
.post();
//結果を取得
Element fullElem = doc.select("textarea#copy-textarea-all").first();
Expand Down

0 comments on commit 298a110

Please sign in to comment.