Nothing Special   »   [go: up one dir, main page]

Skip to content

Commit

Permalink
Fix #843
Browse files Browse the repository at this point in the history
  • Loading branch information
hhrutter committed Apr 8, 2024
1 parent 05d2d1f commit a647579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/pdfcpu/stamp.go
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ func createPDFRes(ctx, otherCtx *model.Context, pageNrSrc, pageNrDest int, migra

// Retrieve content stream bytes of page dict.
pdfRes.Content, err = otherXRefTable.PageContent(d)
if err != nil {
if err != nil && err != model.ErrNoContent {
return err
}

Expand Down

0 comments on commit a647579

Please sign in to comment.