chore(webui): unset nonce when logged out
All checks were successful
Build / build (pull_request) Successful in 1m22s
All checks were successful
Build / build (pull_request) Successful in 1m22s
This commit is contained in:
parent
6cdd103c3d
commit
e60de0a666
@ -176,7 +176,17 @@ const wsOnConnect = (ws: ws, _req: http.IncomingMessage): void => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (data.logout) {
|
if (data.logout) {
|
||||||
|
const accountId = (ws as IWsCustomData).accountId;
|
||||||
(ws as IWsCustomData).accountId = undefined;
|
(ws as IWsCustomData).accountId = undefined;
|
||||||
|
await Account.updateOne(
|
||||||
|
{
|
||||||
|
_id: accountId,
|
||||||
|
ClientType: "webui"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Nonce: 0
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user