This commit is contained in:
2019-05-15 15:49:56 +02:00
parent 1bacc4ba63
commit 82af50334c
2 changed files with 6 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#Thu Apr 18 16:34:09 CEST 2019
#Mon May 06 16:47:41 CEST 2019
colormap=Temperature
colormapAutomatic=true
colormapLogarithmic=false

View File

@@ -2399,7 +2399,11 @@ public class ScreenPanel4 extends Panel {
}
public Map<String, Object> getProcessingParameters(StreamValue value) throws IOException {
return (Map) JsonSerializer.decode(value.getValue("processing_parameters").toString(), Map.class);
try{
return (Map) JsonSerializer.decode(value.getValue("processing_parameters").toString(), Map.class);
} catch (Exception ex){
return new HashMap<>();
}
}
void saveFrames(String name, ArrayList<Frame> frames) throws IOException {