diff --git a/changes/changelog.d/1137.docs b/changes/changelog.d/1137.docs deleted file mode 100644 index 9a4ae4d19..000000000 --- a/changes/changelog.d/1137.docs +++ /dev/null @@ -1 +0,0 @@ -Updated documentation to reflect changes in Caddy v2. diff --git a/changes/changelog.d/1157.bugfix b/changes/changelog.d/1157.bugfix new file mode 100644 index 000000000..1de17c8f0 --- /dev/null +++ b/changes/changelog.d/1157.bugfix @@ -0,0 +1 @@ +Fixed player crash when using Funkwhale as a PWA (#1157) diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue index b072b7819..cf0f47a2a 100644 --- a/front/src/components/audio/Player.vue +++ b/front/src/components/audio/Player.vue @@ -721,7 +721,7 @@ export default { // If the session is playing as a PWA, populate the notification // with details from the track if ('mediaSession' in navigator) { - let metatata = { + let metadata = { title: this.currentTrack.title, artist: this.currentTrack.artist.name, }