Skip to content
Snippets Groups Projects
Commit 43e03a3b authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

fix: recursive=true not 1 (gitlab) (#963)

parent 665ede84
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,7 @@ async function getFileList(branchName) { ...@@ -129,7 +129,7 @@ async function getFileList(branchName) {
return config.fileList; return config.fileList;
} }
const res = await get( const res = await get(
`projects/${config.repoName}/repository/tree?ref=${branchName}&recursive=1` `projects/${config.repoName}/repository/tree?ref=${branchName}&recursive=true`
); );
config.fileList = res.body config.fileList = res.body
.filter(item => item.type === 'blob') .filter(item => item.type === 'blob')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment