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
I just noted in my app that the _afterUILanguageChange() hook was broken. Whereas it worked in this combination: tap:[email protected]' and [email protected], after the switch to tap:[email protected]and[email protected]the hook wasn't executed anymore. My hook was replaced by a generic function that just returnednull. After I put the hook setup in a Meteor.startup()block, however, it worked again. So I think it should be mentioned in the docs that the hook should be set on startup. Or, it should be ensured thattap:i18n` doesn't overwrite it if it already has been set.
The text was updated successfully, but these errors were encountered:
I just noted in my app that the
_afterUILanguageChange()
hook was broken. Whereas it worked in this combination:tap:[email protected]' and
[email protected], after the switch to
tap:[email protected]and
[email protected]the hook wasn't executed anymore. My hook was replaced by a generic function that just returned
null. After I put the hook setup in a
Meteor.startup()block, however, it worked again. So I think it should be mentioned in the docs that the hook should be set on startup. Or, it should be ensured that
tap:i18n` doesn't overwrite it if it already has been set.The text was updated successfully, but these errors were encountered: