Replaced Windows temp filepaths with linux filepaths

This commit is contained in:
Rekai Musuka
2019-04-01 12:32:23 -05:00
parent 2242eb3079
commit 86eb20d584
5 changed files with 13 additions and 6 deletions

View File

@@ -71,7 +71,7 @@ export default class Body extends React.Component {
};
if (!Settings.has("tableJSON")) {
let tableJSON = await generate("C:\\Users\\Paoda\\Downloads\\Music", template);
let tableJSON = await generate("/home/paoda/Downloads/Music", template);
console.log("Initialize: ", tableJSON)
this.setState({ table: tableJSON });

View File

@@ -61,7 +61,7 @@ export default class SettingsManager extends Modal {
if (Settings.has("tableJSON")) Settings.set("tableJSON", template);
else console.info("There was no Table Saved to Delete!")
const tableJSON = await generate("C:\\Users\\Paoda\\Downloads\\Music", template);
const tableJSON = await generate("/home/paoda/Downloads/Music", template);
Emitter.emit("newTable", tableJSON);