Skip to content

Commit

Permalink
brackets.Length を text.Length に変更
Browse files Browse the repository at this point in the history
  • Loading branch information
TakenPt committed Mar 3, 2024
1 parent 326914a commit 1307ed9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Epub/KoeBook.Epub/Utility/ScrapingHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static List<string> SplitBrace(string text)
startIdx = i + 1;
}
}
if (startIdx != brackets.Length)
if (startIdx != text.Length)
{
result.Add(text[startIdx..]);
}
Expand Down

0 comments on commit 1307ed9

Please sign in to comment.