Skip to content

fix(vscode): repo 변수에서 잘못된 배열 접근 제거#843

Merged
ethandeveloper2 merged 1 commit into
githru:mainfrom
ethandeveloper2:fix/839-fix-repo-name-setting
Aug 19, 2025
Merged

fix(vscode): repo 변수에서 잘못된 배열 접근 제거#843
ethandeveloper2 merged 1 commit into
githru:mainfrom
ethandeveloper2:fix/839-fix-repo-name-setting

Conversation

@ethandeveloper2

Copy link
Copy Markdown
Contributor

Related issue

closes #839

Result

  • repo 변수에서 잘못된 배열 접근 제거

@ethandeveloper2 ethandeveloper2 self-assigned this Aug 18, 2025
@ethandeveloper2 ethandeveloper2 added the bug Something isn't working label Aug 18, 2025
@ethandeveloper2
ethandeveloper2 requested a review from a team as a code owner August 18, 2025 10:26

@grapefruit13 grapefruit13 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!!!
이 부분을 찾아내시다니 엄청 예리하시네요 👍🏻👍🏻👍🏻

@SingTheCode SingTheCode left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

어떻게 찾으신거죠ㅎㅎㅎ 고생하셨습니다ㅎㅎ

const gitLog = await getGitLog(gitPath, currentWorkspacePath);
const { owner, repo: initialRepo } = getRepo(gitConfig);
const repo = initialRepo[0];
const repo = initialRepo;

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

크리티컬한 이슈네요!!!

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

어엇!!! 😮

@ytaek ytaek left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이거 blame을 돌려봐야하는걸까요? 😈😈😈

해당 부분에 대한 test case 가 존재하지 않아서 이런 오류를 못 잡았을 수도 있겠습니다!
Test를 맡으신 @grapefruit13 님, @ethandeveloper2 님 관련해서 Test case를 추가하는걸 이슈로 등록하고 진행해주시면 어떨까요? 😸

const gitLog = await getGitLog(gitPath, currentWorkspacePath);
const { owner, repo: initialRepo } = getRepo(gitConfig);
const repo = initialRepo[0];
const repo = initialRepo;

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

어엇!!! 😮

@ethandeveloper2

Copy link
Copy Markdown
Contributor Author

이거 blame을 돌려봐야하는걸까요? 😈😈😈

해당 부분에 대한 test case 가 존재하지 않아서 이런 오류를 못 잡았을 수도 있겠습니다! Test를 맡으신 @grapefruit13 님, @ethandeveloper2 님 관련해서 Test case를 추가하는걸 이슈로 등록하고 진행해주시면 어떨까요? 😸

현재 getRepo라는 단일 함수 자체에 대한 테스트가 충분히 작성되어 있는 상황이기 떄문에,
const { owner, repo: initialRepo } = getRepo(gitConfig); const repo = initialRepo; 위 두 함수를 묶어서, 통합 테스트를 작성하는 이슈를 등록하고 진행해보겠습니다~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug Something isn't working

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Bug]: 저장소 이름 파싱 오류로 인한 Pull Request 조회 실패

4 participants