|
@@ -69,13 +69,13 @@ namespace GxPress.Service.Implement.Epub
|
|
|
}
|
|
|
EpubBook epubBook = EpubReader.ReadBook(request.Path);
|
|
|
string htmlContent = string.Empty;
|
|
|
- int i = 0;
|
|
|
+ int i = 1;
|
|
|
foreach (EpubTextContentFile textContentFile in epubBook.ReadingOrder)
|
|
|
{
|
|
|
|
|
|
if (textContentFile.FileName.Equals(request.CatalogId) || textContentFile.FileName.Equals(request.CatalogNameg))
|
|
|
{
|
|
|
- if (i >=sectionValue && sectionValue > 0)
|
|
|
+ if (i >sectionValue && sectionValue > 0)
|
|
|
{
|
|
|
htmlContent = HtmlAgilityPackHelper.GetHmtlContent(textContentFile.Content);
|
|
|
break;
|