🎨 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:
Daniel 2023-08-27 11:13:39 +08:00
parent 184b4aa074
commit 7d6c101813
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -851,7 +851,7 @@ func (parser *PdfAssetParser) Parse(absPath string) (ret *AssetParseResult) {
}
close(results)
if 256 < pc.PageCount {
if 128 < pc.PageCount {
logging.LogInfof("convert [%s] PDF with [%d[ pages using [%d] workers took [%s]", absPath, pc.PageCount, cores, time.Since(now))
}