mirror of
https://github.com/Alfresco/alfresco-transform-core.git
synced 2025-08-14 17:58:27 +00:00
Fix build
This commit is contained in:
@@ -138,7 +138,7 @@ public class TransformHandler
|
||||
@Override
|
||||
protected long getSourceSize()
|
||||
{
|
||||
return sourceMultipartFile.getSize();
|
||||
return sourceMultipartFile == null ? -1 : sourceMultipartFile.getSize();
|
||||
}
|
||||
|
||||
protected void sendTransformResponse(TransformManagerImpl transformManager)
|
||||
|
Reference in New Issue
Block a user