expireMs -> expireTs

This commit is contained in:
Travis Ralston 2019-06-27 09:44:13 -06:00
parent 1546cb2923
commit 67ecf9db62

View file

@ -39,7 +39,7 @@ export default class TypingStore {
* MatrixClientPeg client changes. * MatrixClientPeg client changes.
*/ */
reset() { reset() {
this._typingStates = {}; // roomId => { isTyping, expireMs } this._typingStates = {}; // roomId => { isTyping, expireTs }
} }
/** /**
@ -60,7 +60,7 @@ export default class TypingStore {
const now = new Date().getTime(); const now = new Date().getTime();
this._typingStates[roomId] = { this._typingStates[roomId] = {
isTyping: isTyping, isTyping: isTyping,
expireMs: now + TYPING_SERVER_TIMEOUT, expireTs: now + TYPING_SERVER_TIMEOUT,
}; };
if (isTyping) { if (isTyping) {
@ -68,7 +68,7 @@ export default class TypingStore {
const currentTyping = this._typingStates[roomId]; const currentTyping = this._typingStates[roomId];
const now = new Date().getTime(); const now = new Date().getTime();
if (currentTyping && currentTyping.expireMs >= now) { if (currentTyping && currentTyping.expireTs >= now) {
currentTyping.isTyping = false; currentTyping.isTyping = false;
} }
}, TYPING_SERVER_TIMEOUT); }, TYPING_SERVER_TIMEOUT);