diff --git a/src/lib/chat/matrix-client.ts b/src/lib/chat/matrix-client.ts index a261210fb..6a5d5c2bb 100644 --- a/src/lib/chat/matrix-client.ts +++ b/src/lib/chat/matrix-client.ts @@ -22,6 +22,7 @@ import { RealtimeChatEvents, IChatClient } from './'; import { mapMatrixMessage } from './matrix/chat-message'; import { ConversationStatus, GroupChannelType, Channel, User as UserModel } from '../../store/channels'; import { MessagesResponse } from '../../store/messages'; +import { User as ZeroUser } from '../../store/authentication/types'; import { FileUploadResult } from '../../store/messages/saga'; import { ParentMessage, User } from './types'; import { config } from '../../config'; @@ -44,7 +45,7 @@ export class MatrixClient implements IChatClient { private accessToken: string; private userId: string; - private zeroUsersMap: Map; + private zeroUsersMap: Map; private connectionResolver: () => void; private connectionAwaiter: Promise;