X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/de26d1f865a23c4a31fedf485ab3acc08d567dd2..4ef7056e002ec60bc1ef09fb0d6e19d2dee009ed:/picsorter.js diff --git a/picsorter.js b/picsorter.js index 31ae640..e8a92a2 100644 --- a/picsorter.js +++ b/picsorter.js @@ -152,7 +152,8 @@ function shell_escape(x) { function show_commands() { var commands = []; $.each(files, function(i, f) { - if ("name" in picinfo[f] && picinfo[f].name.length > 0) { + if ("name" in picinfo[f] && picinfo[f].name.length > 0 && + !("deleted" in picinfo[f])) { var command = ["pic-mv"]; if ("exposure" in picinfo[f]) { command.push("-e " + picinfo[f].exposure);