rt2zz / redux-persist

persist and rehydrate a redux store
MIT License
12.97k stars 867 forks source link

Different behavior between Firefox and Chrome when using https and http #555

Open pedropeixoto opened 7 years ago

pedropeixoto commented 7 years ago

I need to persist my state in another tab, for that I'm using redux-persist@4.8.0 and redux-persist-crosstab@3.6.0

The first tab is https://example.com/ and the second tab is http://example.com/link.

On Chrome, it persists the state correctly, but on Firefox it doesn't persist at all.

Any ideas why?

rt2zz commented 7 years ago

crosstab relies on the storage change event, everything else about it is pretty trivial. I would recommend starting by debugging whether the change event is firing. https vs http would affect this.

yugantar7 commented 5 years ago

@pedropeixoto I am also using the same libraries and have the same issue between Chrome and Firefox. Did you find any solution to it?