You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In AbstractLightblueResponse, hasLightblueErrors checks to see if the status is equal to "partial" but doesn't look to see if "errors" actually exist in the json.
So I have to do if(getLightblueErrors() != null) rather than if(hasLightblueErrors()), making that method pretty pointless
The text was updated successfully, but these errors were encountered:
In AbstractLightblueResponse, hasLightblueErrors checks to see if the status is equal to "partial" but doesn't look to see if "errors" actually exist in the json.
So I have to do
if(getLightblueErrors() != null)
rather thanif(hasLightblueErrors())
, making that method pretty pointlessThe text was updated successfully, but these errors were encountered: