Merge remote-tracking branch 'origin/master'

This commit is contained in:
adb 2021-03-10 09:37:48 +01:00
commit e104fae66f

View File

@ -52,7 +52,9 @@ public class DataStoreBot {
//get timestamp
String timestamp = (String) entry.get("timestamp");
String path = this.storePath + country + "-" + sensorID + "-" + timestamp + ".json";;
String path = this.storePath + country + "-" + sensorID + "-" + timestamp + ".json";
path = path.replace(":", "-");
path = path.replace(" ", "-");
this.store.storeJSON(path, entry);
}
}