no special characters

This commit is contained in:
TechCrafter07 2021-03-10 08:55:39 +01:00
parent 37caa0beac
commit 5aa1b409f2

View File

@ -53,7 +53,9 @@ public class DataStoreBot {
//get timestamp //get timestamp
String timestamp = (String) entry.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); this.store.storeJSON(path, entry);
} }
} }