Skip to content

Commit

Permalink
Merge pull request #9 from npes87184/master
Browse files Browse the repository at this point in the history
fix cklol and title parse error
  • Loading branch information
pupuliao committed Mar 16, 2017
2 parents a8c93a9 + 516c406 commit 5b094ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/JNovelDownloader/Kernel/Downloader.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void generateUrlList() {
urlStrings[m++] = temp + n;
}
} else {
String temp = "http://" + urlData.domain + "/thread-"
String temp = "https://" + urlData.domain + "/thread-"
+ String.valueOf(urlData.Tid) + "-";
int m = 0;
for (int n = urlData.page; n <= toPage; n++) {
Expand Down
2 changes: 1 addition & 1 deletion src/JNovelDownloader/UI/Frame.java
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ private String getTittle(Option option) throws IOException {// 必須要先執
}
}
reader.close();
return result;
return result.trim();
}

}

0 comments on commit 5b094ff

Please sign in to comment.