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
Handle cases of no data found elegantly. Example: App would crash on trying to fetch incorrect events.
Fix: Use if (err || !data) type constructs. Do a pass through the whole codebase for similar errors.
if (err || !data)
The text was updated successfully, but these errors were encountered:
Update: Partial migration has been done. Also, we need to migrate to promises instead. See sample commit here: 95b3d95
Sorry, something went wrong.
@sohailrajdev97 if possible do a sweep of the project code file by file and fix such bugs after Atmos.
No branches or pull requests
Handle cases of no data found elegantly. Example: App would crash on trying to fetch incorrect events.
Fix: Use
if (err || !data)
type constructs. Do a pass through the whole codebase for similar errors.The text was updated successfully, but these errors were encountered: