Monday, January 29, 2024
2 changes · master
Resolved issues and error corrections
This fix restores the intended behavior so live chat startup data includes only active chat conversations. It prevents inactive or unnecessary chats from being loaded, keeping the live chat experience cleaner and more efficient for users.
Original PR description
Since [1], only active live chat channels are returned by the `init_messaging` rpc since the inactive ones are not required. This is done by passing the `is_for_livechat` key in the context. Since [2], the context is not propagated anymore thus inactive channels are returned as well. This PR ensures the context is correctly propagated to keep the previous behavior. [1]: https://github.com/odoo/odoo/pull/146098 [2]: https://github.com/odoo/odoo/pull/150367
The Social app now opens the Add Stream dialog correctly when debugger mode is enabled. This prevents an error that blocked users from adding new social streams, making stream setup work as expected.
Original PR description
Steps to reproduce =================== 1. Enable debugger mode. 2. Click on the Add Stream button. Error occurred Technical ========== The commit https://github.com/odoo/enterprise/commit/47434fba1acd9b7bcc0a4eb74f6b2dc4454f0068 adds static props to all components. The 'AddSocialStreamDialog' component is missing a few props. After this commit ================== Work perfectly fine.