Skip to content

Commit

Permalink
Fix missing audio breaking desktop app
Browse files Browse the repository at this point in the history
  • Loading branch information
tillvit committed Oct 7, 2024
1 parent 42b88e3 commit dbf65a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/util/file-handler/NodeFileHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class NodeFileHandler implements BaseFileHandler {
if (!dir) {
throw new DOMException(...GONE)
}
return dir.getFileHandle(fileName)
return await dir.getFileHandle(fileName)
} catch (err) {
console.error("Failed to get relative file " + fileName + ": " + err)
return undefined
Expand Down

0 comments on commit dbf65a6

Please sign in to comment.