-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 9.10-HF24
-
Fix Version/s: 9.10-HF28, 10.10-HF01, 11.1, 2021.0
-
Component/s: Convert
LibreOffice requires a distinct user profile to run concurrent conversions: this requirement was implemented by NXP-26306. However the temporary folder created for this user profile is not correctly deleted once the conversion is finished.
While debugging, it appears that the path stored in the command parameters is not correctly "decoded". The consequence is that an incorrect Unix path is tested and the folder deletion fails.
A simple fix could be to replace
Paths.get(tempPath)
by
Paths.get(new URI(tempPath))