1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

use file:// as file uri path prefix

This commit is contained in:
Reinhard Pointner 2008-02-16 07:06:22 +00:00
parent 456a14e7ce
commit 68247ea3ad

View File

@ -53,7 +53,7 @@ public class FileTransferable implements Transferable {
StringBuffer sb = new StringBuffer();
for (File file : files) {
sb.append("file:///" + file.toURI().getPath());
sb.append("file://" + file.toURI().getPath());
sb.append("\r\n");
}