remove fake data
This commit is contained in:
parent
823598aeb3
commit
e3aa7cf67d
1 changed files with 2 additions and 2 deletions
|
@ -155,8 +155,8 @@ async function parseCurrentPedalboard(currentPedalboard) {
|
|||
throw new Error('could not determine current pedalboard config file');
|
||||
}
|
||||
// FAKE DATA
|
||||
let file = path.resolve(path.dirname(__dirname) + '/dev/' + currentPedalboard.uri.substring(currentPedalboard.uri.lastIndexOf('/') + 1));
|
||||
// let file = path.resolve(currentPedalboard.uri.replace('file://', ''));
|
||||
// let file = path.resolve(path.dirname(__dirname) + '/dev/' + currentPedalboard.uri.substring(currentPedalboard.uri.lastIndexOf('/') + 1));
|
||||
let file = path.resolve(currentPedalboard.uri.replace('file://', ''));
|
||||
const data = await new Promise((resolve, reject) => {
|
||||
fs.readFile(file, (err, data) => {
|
||||
if (err) {
|
||||
|
|
Loading…
Reference in a new issue