We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'Warning: Unhandled rejection: TypeError: Cannot read property 'num' of undefined' at Obj.RefSetCache_has [as has] .....
The error occurs in base/core/objs.js, I replaced the line with a hack fix for the time being:
has: function RefSetCache_has(ref) { return ('R' + ref.num + '.' + ref.gen) in this.dict; }
after:
has: function RefSetCache_has(ref) { if(ref !== undefined) return ('R' + ref.num + '.' + ref.gen) in this.dict; else return null; }
The text was updated successfully, but these errors were encountered:
Using this form: http://www.albertahealthservices.ca/frm-18277.pdf
I did not half of the content after this "fix"
Sorry, something went wrong.
v1.0.9: fixed issue #21 and #26
124b1fb
fixed in v1.0.9
133a285
No branches or pull requests
'Warning: Unhandled rejection: TypeError: Cannot read property 'num' of undefined' at Obj.RefSetCache_has [as has] .....
The error occurs in base/core/objs.js, I replaced the line with a hack fix for the time being:
has: function RefSetCache_has(ref) { return ('R' + ref.num + '.' + ref.gen) in this.dict; }
after:
has: function RefSetCache_has(ref) { if(ref !== undefined) return ('R' + ref.num + '.' + ref.gen) in this.dict; else return null; }
The text was updated successfully, but these errors were encountered: