mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-06 00:38:49 +01:00
🎨 PDF files longer than 1024 pages are not included in asset file content searching https://github.com/siyuan-note/siyuan/issues/9053
This commit is contained in:
parent
9cfcec2310
commit
184b4aa074
1 changed files with 1 additions and 1 deletions
|
|
@ -845,7 +845,7 @@ func (parser *PdfAssetParser) Parse(absPath string) (ret *AssetParseResult) {
|
|||
for p := 0; p < pc.PageCount; p++ {
|
||||
res := <-results
|
||||
pagetext[res.pageNo] = res.text
|
||||
if res.nil != err {
|
||||
if nil != res.err {
|
||||
logging.LogErrorf("convert [%s] of page %d failed: [%s]", tmp, res.pageNo, err)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue