Update NotificationSounds.plugin.js

This commit is contained in:
Mirco Wittrien 2023-11-04 19:55:31 +01:00 committed by GitHub
parent fd647eb678
commit 114f360400
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,7 @@ module.exports = (_ => {
}
BDFDB.NotificationUtils.toast("Use a valid direct link to a video or audio source, they usually end on something like .mp3, .mp4 or .wav", {type: "danger"});
});
else BDFDB.LibraryRequires.fs.readFile(source, "utf8", (error, buffer) => {
else BDFDB.LibraryRequires.fs.readFile(source, "utf8", (error, body) => {
if (error) BDFDB.NotificationUtils.toast("Could not fetch file. Please make sure the file exists.", {type: "danger"});
else return successSavedAudio({category, sound, source: `data:audio/mpeg;base64,${btoa(body)}`});
});