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
Some slow queries we only do once an hour by a component known as the "indexer", it puts a bunch of lookup maps in an atom.
When the app starts it takes a few minutes before this index map is populated, at that point we should show empty pages or some kind of "sit tight" page, but not a 500 error (NullPointerException) as we do now.
In this code chan-name->id is supposed to be a map, but it can also be nil.
Some slow queries we only do once an hour by a component known as the "indexer", it puts a bunch of lookup maps in an atom.
When the app starts it takes a few minutes before this index map is populated, at that point we should show empty pages or some kind of "sit tight" page, but not a 500 error (NullPointerException) as we do now.
In this code chan-name->id is supposed to be a map, but it can also be
nil
.The solution can be as simple as putting some placeholder maps in
!indexes
The text was updated successfully, but these errors were encountered: