mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-24 08:48:51 -05:00
* fixfix
This commit is contained in:
parent
21fa1a19c4
commit
c6a883a538
@ -120,14 +120,14 @@ public class FileTransferable implements Transferable {
|
||||
try {
|
||||
// file URIs
|
||||
file = new File(uri);
|
||||
} catch (IllegalArgumentException e) {
|
||||
} catch (IllegalArgumentException exception) {
|
||||
// try handle other GVFS URI schemes
|
||||
try {
|
||||
if (GVFS.isSupported()) {
|
||||
file = GVFS.getPathForURI(uri);
|
||||
}
|
||||
} catch (LinkageError error) {
|
||||
Logger.getLogger(FileTransferable.class.getName()).log(Level.WARNING, "Unable to resolve GVFS URI", e);
|
||||
Logger.getLogger(FileTransferable.class.getName()).log(Level.WARNING, "Unable to resolve GVFS URI", error);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user