Fix renaming pad with multiple dots in the name in drive

pull/1/head
yflory 7 years ago
parent 7bc2f81852
commit 094856a511

@ -546,7 +546,7 @@ define([
};
var getFileNameExtension = function (name) {
var matched = /\.\S+$/.exec(name);
var matched = /\.[^\. ]+$/.exec(name);
if (matched && matched.length) { return matched[matched.length -1]; }
return '';
};

Loading…
Cancel
Save