Skip to content
This repository has been archived by the owner on Jun 26, 2022. It is now read-only.

Commit

Permalink
Fix for missing pipes
Browse files Browse the repository at this point in the history
  • Loading branch information
requinDr committed Feb 4, 2022
1 parent a3d325b commit 71404d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/fr/fatestaynight/packager/PageFetcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ public String fetchText(String language) {

public static String lectureFichier(String nomFichier, int pageNum, String language, Charset charset) throws IOException {
String fullName = language + "/" + nomFichier;
String pageStart = "*page" + (pageNum -1) + "|";
String pageEnd = "*page" + pageNum + "|";
String pageStart = "*page" + (pageNum -1);
String pageEnd = "*page" + pageNum;
String content = "";
String line;

Expand Down

0 comments on commit 71404d4

Please sign in to comment.