Its there way how can i separate two different sessions from different browsers or devices for same user?
When I login from different browsers to same user account, Session ID and all data are same. I tried save some data to cache through:
frappe.cache().set_value("session_specific_value", "Hey")
But both of users has this value available. I am not able separate this users and save some session specific data (no user specific). They have also SID same.
Thanks for any help.