mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-09 20:31:38 +01:00
Fixed HTML export malfunctioning (Scripts were not copied) #527
This commit is contained in:
parent
d62f723cd6
commit
8a48a590ba
@ -187,7 +187,7 @@ public class HtmlExport extends SpecificExport {
|
|||||||
to.getParentFile().mkdirs();
|
to.getParentFile().mkdirs();
|
||||||
if (to.exists()) {
|
if (to.exists()) {
|
||||||
Files.delete(to.toPath());
|
Files.delete(to.toPath());
|
||||||
if (to.createNewFile()) {
|
if (!to.createNewFile()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user