We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5d95141 + dfba8f9 commit 2e07c33Copy full SHA for 2e07c33
src/main/webapp/imports.jsp
@@ -231,6 +231,11 @@ try{
231
else{iaStatusString="identification";}
232
}
233
String status=task.getStatus();
234
+ //update for Wildbook 10.8+
235
+ //legacy bulk imports stopped at "complete" for an import task status
236
+ //10.8 added a subsequent "processing-detection" state, but for this page's
237
+ //purposes, we want to just list that additional state as the legacy complete value
238
+ if(status!=null && status.equals("processing-detection")) status="complete";
239
240
//let's build this Task's JSON
241
JSONObject jobj = new JSONObject();
0 commit comments