-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix reload feed button does nothing #5430
Conversation
@XiangRongLin could you review this? :-) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
initListeners was being called before the bindings were assigned, and therefore the click listener was never setup
Add that reasoning to the commit message
Unrelated, but is it intended that it's possible for
If not, all usages of _feedbinding should be replaced with feedbinding , to not silently break features, but breaking them visibly
Also since you are already there, to me it looks like |
I agree, I'm going to remove them |
Done @XiangRongLin |
initListeners was being called before the bindings were assigned, and therefore the click listener was never setup
Fix reload feed button does nothing
What is it?
Description of the changes in your PR
This was caused by view binding PR. initListeners was being called before the bindings were assigned, and therefore the click listener was never setup. @Isira-Seneviratne
Due diligence