no special characters

master
TechCrafter07 3 years ago
parent 37caa0beac
commit 5aa1b409f2

@ -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);
} }
} }

Loading…
Cancel
Save