devicetype 저장된 값을 쓰도록 수정.
This commit is contained in:
parent
3a58a47e1f
commit
69bb77e92c
|
@ -211,7 +211,7 @@ export class AlbumBoxComponent implements OnInit, OnDestroy {
|
|||
this.commonApiService
|
||||
.fileTalkDownload({
|
||||
userSeq: this.loginRes.userSeq,
|
||||
deviceType: DeviceType.PC,
|
||||
deviceType: this.environmentsInfo.deviceType,
|
||||
token: this.loginRes.tokenString,
|
||||
attachmentsSeq: fileInfo.info.seq,
|
||||
fileDownloadItem: fileInfo.fileDownloadItem
|
||||
|
|
|
@ -33,7 +33,11 @@ import {
|
|||
CreateChatDialogResult,
|
||||
CreateChatDialogData
|
||||
} from '../../dialogs/chat/create-chat.dialog.component';
|
||||
import { UserSelectDialogType } from '@app/types';
|
||||
import {
|
||||
UserSelectDialogType,
|
||||
EnvironmentsInfo,
|
||||
KEY_ENVIRONMENTS_INFO
|
||||
} from '@app/types';
|
||||
import { RoomInfo } from '@ucap-webmessenger/protocol-room';
|
||||
|
||||
export interface FileInfoTotal {
|
||||
|
@ -60,6 +64,7 @@ export class FileBoxComponent implements OnInit, OnDestroy {
|
|||
selectedFileList: FileInfoTotal[] = [];
|
||||
|
||||
loginRes: LoginResponse;
|
||||
environmentsInfo: EnvironmentsInfo;
|
||||
|
||||
currentTabIndex = 0;
|
||||
|
||||
|
@ -78,6 +83,9 @@ export class FileBoxComponent implements OnInit, OnDestroy {
|
|||
this.loginRes = this.sessionStorageService.get<LoginResponse>(
|
||||
KEY_LOGIN_RES_INFO
|
||||
);
|
||||
this.environmentsInfo = this.sessionStorageService.get<EnvironmentsInfo>(
|
||||
KEY_ENVIRONMENTS_INFO
|
||||
);
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
|
@ -247,7 +255,7 @@ export class FileBoxComponent implements OnInit, OnDestroy {
|
|||
this.commonApiService
|
||||
.fileTalkDownload({
|
||||
userSeq: this.loginRes.userSeq,
|
||||
deviceType: DeviceType.PC,
|
||||
deviceType: this.environmentsInfo.deviceType,
|
||||
token: this.loginRes.tokenString,
|
||||
attachmentsSeq: fileInfo.info.seq,
|
||||
fileDownloadItem: fileInfo.fileDownloadItem
|
||||
|
|
|
@ -161,7 +161,7 @@ export class MessageDetailDialogComponent implements OnInit {
|
|||
this.messageApiService
|
||||
.retrieveResourceFile({
|
||||
userSeq: this.data.loginRes.userSeq,
|
||||
deviceType: DeviceType.PC,
|
||||
deviceType: this.data.environmentsInfo.deviceType,
|
||||
tokenKey: this.data.loginRes.tokenString,
|
||||
type: this.messageInfo.type,
|
||||
msgId: this.messageInfo.msgId,
|
||||
|
@ -187,7 +187,7 @@ export class MessageDetailDialogComponent implements OnInit {
|
|||
this.messageApiService
|
||||
.retrieveResourceFile({
|
||||
userSeq: this.data.loginRes.userSeq,
|
||||
deviceType: DeviceType.PC,
|
||||
deviceType: this.data.environmentsInfo.deviceType,
|
||||
tokenKey: this.data.loginRes.tokenString,
|
||||
type: this.messageInfo.type,
|
||||
msgId: this.messageInfo.msgId,
|
||||
|
@ -215,7 +215,7 @@ export class MessageDetailDialogComponent implements OnInit {
|
|||
// this.messageApiService
|
||||
// .retrieveResourceFile({
|
||||
// userSeq: this.data.loginRes.userSeq,
|
||||
// deviceType: DeviceType.PC,
|
||||
// deviceType: this.data.environmentsInfo.deviceType,
|
||||
// tokenKey: this.data.loginRes.tokenString,
|
||||
// type: this.messageInfo.type,
|
||||
// msgId: this.messageInfo.msgId,
|
||||
|
@ -310,7 +310,7 @@ export class MessageDetailDialogComponent implements OnInit {
|
|||
this.messageApiService
|
||||
.retrieveResourceFile({
|
||||
userSeq: this.data.loginRes.userSeq,
|
||||
deviceType: DeviceType.PC,
|
||||
deviceType: this.data.environmentsInfo.deviceType,
|
||||
tokenKey: this.data.loginRes.tokenString,
|
||||
type: this.messageInfo.type,
|
||||
msgId: this.messageInfo.msgId,
|
||||
|
@ -541,7 +541,7 @@ export class MessageDetailDialogComponent implements OnInit {
|
|||
this.messageApiService
|
||||
.cancelMessage({
|
||||
userSeq: this.data.loginRes.userSeq,
|
||||
deviceType: DeviceType.PC,
|
||||
deviceType: this.data.environmentsInfo.deviceType,
|
||||
tokenKey: this.data.loginRes.tokenString,
|
||||
type: this.messageInfo.type,
|
||||
msgId: this.messageInfo.msgId,
|
||||
|
|
Loading…
Reference in New Issue
Block a user