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
Environment
Describe the bug Running gd-images --max-time 6 --word "犬" returns Couldn't connect to Bing.
gd-images --max-time 6 --word "犬"
Couldn't connect to Bing.
** Fix ** On a closer inspection, r.error.message contains Protocol https not supported.
r.error.message
Protocol https not supported
Locally, I managed to fix it with the following changes to xmake.lua:
xmake.lua
add_requires("cpr >= 1.10.5", {configs = {ssl = true}}) add_requires("nlohmann_json", "marisa", "rdricpp", "mecab") ... add_packages("cpr", {configs = {ssl = true} }) add_packages("nlohmann_json", "marisa", "rdricpp", "mecab")
Which resulted in the correct html being generated.
I'm not familiar enough with the C++ ecosystem to know how these changes will effect other users so I personally won't make a PR with these changes.
The text was updated successfully, but these errors were encountered:
I don't know why it doesn't work for you but works for everyone else. But I think it if we add this config option it won't break anything.
Sorry, something went wrong.
No branches or pull requests
Environment
Describe the bug
Running
gd-images --max-time 6 --word "犬"
returnsCouldn't connect to Bing.
** Fix **
On a closer inspection,
r.error.message
containsProtocol https not supported
.Locally, I managed to fix it with the following changes to
xmake.lua
:Which resulted in the correct html being generated.
I'm not familiar enough with the C++ ecosystem to know how these changes will effect other users so I personally won't make a PR with these changes.
The text was updated successfully, but these errors were encountered: