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
There is a problem in the DataTableRenderer::encodeEnd function
int start = customOptions.indexOf("language" + "language".length());
Should be
int start = customOptions.indexOf("language") + "language".length();
The text was updated successfully, but these errors were encountered:
To clarify a bit - this causes the language url to be injected after the first { occurrence. This breaks custom options quite aggressively.
{
Sorry, something went wrong.
TheCoder4eu#1101 fix an error in line 612 to get start index
061dc0f
#1101 fix an error in line 612 to get start index
765509c
Thanks for pointing this out and for providing a PR!
geopossachs
Successfully merging a pull request may close this issue.
There is a problem in the DataTableRenderer::encodeEnd function
int start = customOptions.indexOf("language" + "language".length());
Should be
int start = customOptions.indexOf("language") + "language".length();
The text was updated successfully, but these errors were encountered: