diff options
Diffstat (limited to 'apps/comments/src/services/GetComments.ts')
-rw-r--r-- | apps/comments/src/services/GetComments.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/comments/src/services/GetComments.ts b/apps/comments/src/services/GetComments.ts index 1e24c8ede8e..c42aa21d6cb 100644 --- a/apps/comments/src/services/GetComments.ts +++ b/apps/comments/src/services/GetComments.ts @@ -60,7 +60,7 @@ const getDirectoryFiles = function( // Map all items to a consistent output structure (results) return responseItems.map(item => { // Each item should contain a stat object - const props = item.propstat!.prop!; + const props = item.propstat!.prop! return prepareFileFromProps(props, props.id!.toString(), isDetailed) }) |