Skip to content
New issue

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

Cannon't Read Property Num #26

Closed
varsis opened this issue Jul 10, 2014 · 2 comments
Closed

Cannon't Read Property Num #26

varsis opened this issue Jul 10, 2014 · 2 comments

Comments

@varsis
Copy link

varsis commented Jul 10, 2014

'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; }

@varsis
Copy link
Author

varsis commented Jul 10, 2014

Using this form:
http://www.albertahealthservices.ca/frm-18277.pdf

I did not half of the content after this "fix"

modesty pushed a commit that referenced this issue Mar 9, 2016
@modesty
Copy link
Owner

modesty commented Mar 9, 2016

fixed in v1.0.9

@modesty modesty closed this as completed Mar 9, 2016
modesty added a commit that referenced this issue Nov 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants