Skip to main content
Homepage
Explore
Search or go to…
/
Sign in
Explore
Primary navigation
Project
T
TreeApi
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Collapse sidebar
Snippets
Groups
Projects
Show more breadcrumbs
Coscine
backend
apis
TreeApi
Commits
27934b00
This project is archived. Its data is
read-only
.
Commit
27934b00
authored
Dec 3, 2021
by
Benedikt Heinrichs
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Correct listing call (coscine/issues#1805)
parent
98447ddc
Branches
Hotfix/1805-listingBreaks
Branches containing commit
Tags
Tags containing commit
2 merge requests
!53
Fix: Correct listing call (coscine/issues#1805)
,
!52
Sprint/2021 23
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Tree/Controllers/TreeController.cs
+1
-1
1 addition, 1 deletion
src/Tree/Controllers/TreeController.cs
with
1 addition
and
1 deletion
src/Tree/Controllers/TreeController.cs
+
1
−
1
View file @
27934b00
...
...
@@ -118,7 +118,7 @@ namespace Coscine.Api.Tree.Controllers
return
BadRequest
(
$"No provider for: \"
{
resource
.
Type
.
DisplayName
}
\"."
);
}
var
fileInfos
=
await
resourceTypeDefinition
.
ListEntries
(
null
,
path
,
resourceTypeOptions
);
var
fileInfos
=
await
resourceTypeDefinition
.
ListEntries
(
resourceId
,
path
,
resourceTypeOptions
);
var
metadataInfos
=
new
List
<
ResourceEntry
>(
fileInfos
);
if
(
path
.
EndsWith
(
"/"
))
...
...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment