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
The Po.et Plugin currently ignores any type of errors that could happen when submitting a work to the Frost API.
wordpress-plugin/PoetArticlePoster/PoetArticlePoster.php
Lines 297 to 320 in 8e101c9
The catch block is empty, and the if ( json_last_error() !== JSON_ERROR_SYNTAX ... doesn't have an else.
catch
if ( json_last_error() !== JSON_ERROR_SYNTAX ...
else
Any error that might prevent the article from actually being persisted by Frost should be both communicated to the user and preserved in a log.
TBD Proper UI and UX for these error messages
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Po.et Plugin currently ignores any type of errors that could happen when submitting a work to the Frost API.
wordpress-plugin/PoetArticlePoster/PoetArticlePoster.php
Lines 297 to 320 in 8e101c9
The
catch
block is empty, and theif ( json_last_error() !== JSON_ERROR_SYNTAX ...
doesn't have anelse
.Any error that might prevent the article from actually being persisted by Frost should be both communicated to the user and preserved in a log.
The text was updated successfully, but these errors were encountered: