Commit 88c4ace7 authored by Quxl's avatar Quxl

x

parent 526bc18d
......@@ -430,7 +430,10 @@ public class ExportServiceImpl implements ExportService {
for(String key: new String[] {"is_viewer_metting", "is_copy_key", "is_important", "is_night"}) {
map.put(key, ExportConstant.YN.get(String.valueOf(map.get(key))));
}
map.putAll(filmExtMM.get(id_str));
Map<String, Object> filmExtMap = filmExtMM.get(id_str);
if(filmExtMap != null) {
map.putAll(filmExtMap);
}
Integer reviewRound = (Integer)map.get("review_round");
Integer reviewState = (Integer)map.get("review_state");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment