Remove browser info for users.

This commit is contained in:
Håvar Aambø Fosstveit
2019-11-07 10:01:26 +01:00
parent 5cdf0baac4
commit 69677e4972
8 changed files with 4 additions and 56 deletions
-3
View File
@@ -1,7 +1,6 @@
const initialState =
{
id : null,
device : null,
picture : null,
canSendMic : false,
canSendWebcam : false,
@@ -27,14 +26,12 @@ const me = (state = initialState, action) =>
{
const {
peerId,
device,
loginEnabled
} = action.payload;
return {
...state,
id : peerId,
device,
loginEnabled
};
}