add refesh token

This commit is contained in:
Peter Maquiran
2022-09-29 15:23:27 +01:00
parent 50a7290edf
commit 8c729e900d
4 changed files with 11 additions and 17 deletions
+1 -4
View File
@@ -77,7 +77,6 @@ export class RoomService {
}
sortRoomList = () => {}
uploadAttachment = (formData) => {}
constructor(
public WsChatService: WsChatService,
@@ -622,7 +621,7 @@ export class RoomService {
}
private typingWatch() {
setTimeout(()=>{
setTimeout(() => {
const now = new Date().getTime()
if((now - this.lastTimeType) >= 2888) {
@@ -631,8 +630,6 @@ export class RoomService {
this.isTyping = false
this.WsChatService.sendStreamNotifyRoom(this.id, SessionStore.user.UserName, 'typing', this.isTyping)
}
} else {
}
}, 3000)