fix: return empty strings for branch name and commit hash in error response

This commit is contained in:
Cohee
2025-02-20 23:18:03 +02:00
parent 8ad7b5dcc5
commit ab4d296b22

View File

@@ -230,7 +230,7 @@ router.post('/version', jsonParser, async (request, response) => {
} catch (error) { } catch (error) {
// it is not a git repo, or has no commits yet, or is a bare repo // it is not a git repo, or has no commits yet, or is a bare repo
// not possible to update it, most likely can't get the branch name either // not possible to update it, most likely can't get the branch name either
return response.send({ currentBranchName: null, currentCommitHash, isUpToDate: true, remoteUrl: null }); return response.send({ currentBranchName: '', currentCommitHash: '', isUpToDate: true, remoteUrl: '' });
} }
const currentBranch = await git.cwd(extensionPath).branch(); const currentBranch = await git.cwd(extensionPath).branch();