Methodician / flight.run

2 stars 0 forks source link

Should check to make sure "result" is defined before getting its property in #90

Closed Methodician closed 6 years ago

Methodician commented 6 years ago

In getFeaturedPosts() in BlogListComponent, an undefined condition is causing console errors. We should first make sure there's not something bad at the root of this, and if not just wrap it in an if(result){} method. Chances are this is just happening because the method gets triggered before result has a value, but let's make sure before just putting a band aid on it.