Skip to content

Commit efe5310

Browse files
committed
fix file path to avoid prefixing ./midi_files/
1 parent 73b3848 commit efe5310

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/services/recorder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export class MidiRecorderImpl {
106106

107107
private generateFilename = (deviceName: string): string => {
108108
const timestamp = new Date().toISOString();
109-
const filename = `./midi_files/${deviceName}_${timestamp}_recording.mid`;
109+
const filename = `${deviceName}_${timestamp}_recording.mid`;
110110
return filename;
111111
};
112112

0 commit comments

Comments
 (0)