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
This is different from #3. I have tested the file they linked and it does not throw an exception.
Describe the bug The method ChapterReader.getChaptersImpl is throwing an exception because it can't find the key in the html map
I have identified the cause in ChapterReader.getChaptersImpl (line 34)
if (!bookRef.Content!.Html!.containsKey(contentFileName))
Where: contentFileName is "../Text/Section00001.xhtml" but the actual key in bookRef.Content!.Html! is "Text/Section00001.xhtml"
contentFileName
"../Text/Section00001.xhtml"
bookRef.Content!.Html!
"Text/Section00001.xhtml"
So it throws the exception
To Reproduce Steps to reproduce the behavior:
Screenshots
The text was updated successfully, but these errors were encountered:
I made an issue at ScerIO/packages.flutter#237, but that was before I found the core cause.
Sorry, something went wrong.
What solution did you find?
Did you get solution?
@petersephrin @shinkhantmaung no i haven’t. The only solution right now is to write your own library or fork it and fix the bugs yourself.
I’m working on my own library but its a long way from completion, and I’ve been too busy to work on it recently.
No branches or pull requests
This is different from #3. I have tested the file they linked and it does not throw an exception.
Describe the bug
The method ChapterReader.getChaptersImpl is throwing an exception because it can't find the key in the html map
I have identified the cause in ChapterReader.getChaptersImpl (line 34)
if (!bookRef.Content!.Html!.containsKey(contentFileName))
Where:
contentFileName
is"../Text/Section00001.xhtml"
but the actual key in
bookRef.Content!.Html!
is"Text/Section00001.xhtml"
So it throws the exception
To Reproduce
Steps to reproduce the behavior:
Screenshots
The text was updated successfully, but these errors were encountered: