李昊 4 年之前
父節點
當前提交
d197cdfe4d
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      gx_api/GxPress/Service/GxPress.Service.Implement/Epub/EpubService.cs

+ 2 - 2
gx_api/GxPress/Service/GxPress.Service.Implement/Epub/EpubService.cs

@@ -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;