Startup
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user