I have been following the official Django Channels tutorial on the Chat Room. ChatRoom - Synchronous Tutorial
However, even following every steps and double checking, I keep on having the same issue: The tutorial mentions the fact that both users, accessing the same chat room (and thus same group name) should receive messages from each other in both browser tabs opened.
- If I send a message from tab 1, I can't see my message in tab 1 but I can in tab 2.
- If I send a message from tab 2, I can see the message duplicated on tab 2, nothing on tab 1.
This issue arises on the synchronous tutorial and the asynchronous one as well.
Did anyone have the same issue?
I can't see what I've done wrong while following the tutorial. I am using Django/Channels latest version with Python 3.9 and the Redis version mentioned on the tutorial.
Thank you.