Skip to content

Commit

Permalink
fix: wav update.
Browse files Browse the repository at this point in the history
  • Loading branch information
ckeller81 committed Aug 24, 2024
1 parent 783c554 commit 4d9c6a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/PathFinder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export default defineComponent({
const playAnnouncement = () => {
const audio = new Audio();
audio.src = `data:audio/mp3;base64,${lastAnnouncement}`;
audio.src = `data:audio/wav;base64,${lastAnnouncement}`;
audio.loop = false;
audio.play();
}
Expand Down

0 comments on commit 4d9c6a8

Please sign in to comment.