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
Describe the bug If I use \s in command like @RegexCommandHandler("/go\\s") I get a compilation error
\s
@RegexCommandHandler("/go\\s")
Expected behavior The string remains as is in the generated code and does not lead to a compilation error
I assume that the issue is code is generated somehow manually instead of using specialized libraries like KotlinPoet
The text was updated successfully, but these errors were encountered:
Thanks for report. The problem was incorrect string inlining. Fixed in 5.0.2, If the problem is still present please let me know.
Sorry, something went wrong.
Fix verified!
vendelieu
No branches or pull requests
Describe the bug
If I use
\s
in command like@RegexCommandHandler("/go\\s")
I get a compilation errorExpected behavior
The string remains as is in the generated code and does not lead to a compilation error
I assume that the issue is code is generated somehow manually instead of using specialized libraries like KotlinPoet
The text was updated successfully, but these errors were encountered: