Integration fix

This commit is contained in:
Fabio Sinibaldi 2022-04-08 15:02:00 +02:00
parent 00536fc8b4
commit c1e8000bd0
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public class StorageUtils {
public TempFile putOntoStorage(InputStream source,String filename) throws RemoteBackendException, FileNotFoundException{
log.debug("Uploading source "+filename);
String id=client.put(true).LFile(source).RFile(getUniqueString());
return new TempFile(id,filename);
return new TempFile(id,null,filename);
}