Ensure server connection is successful for sslrootcert=system in server configuration. #7907

This commit is contained in:
Yogesh Mahajan
2024-10-14 16:17:46 +05:30
committed by GitHub
parent 9be0fef470
commit 2cc8f5f272
2 changed files with 6 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ export class FileTreeItem extends React.Component<IItemRendererXProps & IItemRen
? 'file'
: 'directory';
if (this.props.item.parent?.path) {
if (this.props.item.parent?.parent && this.props.item.parent?.path) {
this.props.item.resolvedPathCache = this.props.item.parent.path + '/' + this.props.item._metadata.data.id;
}