remove refresh token

This commit is contained in:
Peter Maquiran
2022-10-11 13:56:56 +01:00
parent 972173413e
commit cc247134a3
17 changed files with 31 additions and 24 deletions
@@ -41,7 +41,7 @@ export class ContactsPage implements OnInit {
}
ngOnInit() {
this.chatService.refreshtoken();
// this.chatService.refreshtoken();
this.loadUsers();
}
@@ -65,7 +65,7 @@ export class ContactsPage implements OnInit {
});
this.showLoader = false;
}, (error) =>{
this.chatService.refreshtoken();
// this.chatService.refreshtoken();
});
}
+1 -1
View File
@@ -162,7 +162,7 @@ export class MessagesPage implements OnInit, AfterViewInit, OnDestroy {
ngOnInit() {
this.createDirectoryImage()
this.chatService.refreshtoken();
// this.chatService.refreshtoken();
this.ChatSystemService.getUserOfRoom(this.roomId).then((value) => {
})