From 75d75ba590d7b83eac1290922a5f39b1875bf0ac Mon Sep 17 00:00:00 2001
From: srosse <stephane.rosse@frentix.com>
Date: Thu, 10 Dec 2020 11:38:32 +0100
Subject: [PATCH] OO-5143: to build a metadata, we need the file and its parent
 directory

---
 .../services/vfs/manager/VFSRepositoryServiceImpl.java        | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/main/java/org/olat/core/commons/services/vfs/manager/VFSRepositoryServiceImpl.java b/src/main/java/org/olat/core/commons/services/vfs/manager/VFSRepositoryServiceImpl.java
index 3130a6809c5..216d30c33a5 100644
--- a/src/main/java/org/olat/core/commons/services/vfs/manager/VFSRepositoryServiceImpl.java
+++ b/src/main/java/org/olat/core/commons/services/vfs/manager/VFSRepositoryServiceImpl.java
@@ -266,6 +266,10 @@ public class VFSRepositoryServiceImpl implements VFSRepositoryService, GenericEv
 
 	@Override
 	public VFSMetadata getMetadataFor(File file) {
+		if(file == null || file.getParentFile() == null) {
+			return null;
+		}
+		
 		String relativePath = getRelativePath(file.getParentFile());
 		if(relativePath.equals("..")) {
 			return null;
-- 
GitLab