endlessm / kolibri-explore-plugin

The kolibri plugin to add the custom channel representation
MIT License
2 stars 4 forks source link

Handlers: Fix root URL redirect #852

Closed manuq closed 11 months ago

manuq commented 11 months ago

The redirect should happen after the loading state is set. Each handler sets loading to true at the very beginning and to false at the very end. But because of the redirect, the TOPICS handler (showChannels) was starting in the middle of the ROOT handler (decideWelcome). Thus the state was mixed up and not to be trusted.

Fixes #799