Skip to content

Commit 7302133

Browse files
xpierrohkxpierrohk
authored andcommitted
Fixes #4
1 parent 57ac519 commit 7302133

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/net/sony/dpt/ui/cli/DigitalPaperCLI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ private void wifiScan() throws IOException, InterruptedException {
568568
private void upload(String local, String remotePath) throws IOException, InterruptedException {
569569
Path localPath = Path.of(local);
570570
if (remotePath == null) {
571-
remotePath = "Document/Received" + localPath.getFileName();
571+
remotePath = "Document/Received/" + localPath.getFileName();
572572
}
573573
new DocumentCommand(digitalPaperEndpoint).upload(localPath, Path.of(remotePath));
574574
}

0 commit comments

Comments
 (0)