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
Thanks Robert. I'll look into it. I'm sure there are plenty of these kettle
gotchas, so when I can fix them I do.
Have you made the change and tested?
Mark
On Sun, May 15, 2022, 10:02 AM Robert ***@***.***> wrote:
I am reasonably sure there is a coding error in webapp.py
At line 1561, 1617
if content == '': # if FAA data not available bypass getting apinfo
should be
if content == b'': # if FAA data not available bypass getting apinfo
The result from the request url is a byte string. Comparing to a normal
string will fail.
—
Reply to this email directly, view it on GitHub
<#21>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AJKUXS7RCUKKLXEEEJRJJBDVKEG2DANCNFSM5V7GWV4A>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
I am reasonably sure there is a coding error in webapp.py
At line 1561, 1617
if content == '': # if FAA data not available bypass getting apinfo
should be
if content == b'': # if FAA data not available bypass getting apinfo
The result from the request url is a byte string. Comparing to a normal string will fail.
The text was updated successfully, but these errors were encountered: