perf(webp): improve the error message for page too tall

This commit is contained in:
Antoine Aflalo
2024-08-28 13:52:18 -04:00
parent ad35e2655f
commit 673484692b

View File

@@ -211,7 +211,7 @@ func (converter *Converter) checkPageNeedsSplit(page *manga.Page, splitRequested
height := bounds.Dy() height := bounds.Dy()
if height >= webpMaxHeight && !splitRequested { if height >= webpMaxHeight && !splitRequested {
return false, img, format, converterrors.NewPageIgnored(fmt.Sprintf("page %d is too tall to be converted to webp format", page.Index)) return false, img, format, converterrors.NewPageIgnored(fmt.Sprintf("page %d is too tall [max: %dpx] to be converted to webp format", page.Index, webpMaxHeight))
} }
return height >= converter.maxHeight && splitRequested, img, format, nil return height >= converter.maxHeight && splitRequested, img, format, nil
} }