Skip to content

Commit

Permalink
show invalid signatures anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
iSunRise committed Oct 28, 2020
1 parent 3be9c65 commit bcd8ae3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/core/annotation.js
Original file line number Diff line number Diff line change
Expand Up @@ -833,10 +833,12 @@ class WidgetAnnotation extends Annotation {
// Hide signatures because we cannot validate them, and unset the fieldValue
// since it's (most likely) a `Dict` which is non-serializable and will thus
// cause errors when sending annotations to the main-thread (issue 10347).
if (data.fieldType === "Sig") {
data.fieldValue = null;
this.setFlags(AnnotationFlag.HIDDEN);
}
//
// UPDATE: Comment this, show the signatures anyway
// if (data.fieldType === "Sig") {
// data.fieldValue = null;
// this.setFlags(AnnotationFlag.HIDDEN);
// }
}

/**
Expand Down

0 comments on commit bcd8ae3

Please sign in to comment.