Hi, I have a WebSocket setup up and it correctly receives and sends messages.
When I open a second browser that hooks into socket, it does not load any messages from before the browser was loaded.
Browser 1:
TestUser: OMG!
TestUser2: Hypeeeee
Browser 2 (Which was launched after those messages were sent):
// Nothing
How could I make it so that Browser 2 loads all previous messages upon launch?
Thanks, AwesomeDude091