타입스크립트 에러 수정
This commit is contained in:
@@ -203,8 +203,7 @@ export class BatchExternalDbService {
|
||||
// 비밀번호 복호화
|
||||
if (connection.password) {
|
||||
try {
|
||||
const passwordEncryption = new PasswordEncryption();
|
||||
connection.password = passwordEncryption.decrypt(connection.password);
|
||||
connection.password = PasswordEncryption.decrypt(connection.password);
|
||||
} catch (error) {
|
||||
console.error("비밀번호 복호화 실패:", error);
|
||||
// 복호화 실패 시 원본 사용 (또는 에러 처리)
|
||||
|
||||
Reference in New Issue
Block a user