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
@KaratasFurkan commented on this pull request.
In org-ai-openai.el:
-(defcustom org-ai-openai-api-token nil +(defcustom org-ai-openai-api-token ""
Hi @andreas-roehler , @rksm , this change breaks the or condition here: https://github.com/andreas-roehler/org-ai/blob/f052119c9f622f1ddb698c08e1ce3bf60b39959f/org-ai-openai.el#L172
The reason is or returns the first non-nil value (e.g. (or nil "" "test") returns ""), which is the empty string in this case.
The text was updated successfully, but these errors were encountered:
The empty string evaluates to boolean t in elisp, which seems a little bit odd, but that's how it is. Fix in preparation.
Sorry, something went wrong.
rksm#113, org-ai--openai-get-token broken, fixed
a6226f3
Signed-off-by: Andreas Roehler <andreas.roehler@online.de>
Merge pull request #114 from andreas-roehler/master
41d81a5
#113, org-ai--openai-get-token broken, fixed
Thanks for reporting and fixing!
ref #114
No branches or pull requests
@KaratasFurkan commented on this pull request.
In org-ai-openai.el:
Hi @andreas-roehler , @rksm , this change breaks the or condition here: https://github.com/andreas-roehler/org-ai/blob/f052119c9f622f1ddb698c08e1ce3bf60b39959f/org-ai-openai.el#L172
The reason is or returns the first non-nil value (e.g. (or nil "" "test") returns ""), which is the empty string in this case.
The text was updated successfully, but these errors were encountered: