diff --git a/changes/changelog.d/1137.docs b/changes/changelog.d/1137.docs
deleted file mode 100644
index 9a4ae4d19e37a2b0e8c9291a05421251efe77ae2..0000000000000000000000000000000000000000
--- 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 0000000000000000000000000000000000000000..1de17c8f07a459c843e2415f33335381aac5554a
--- /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 b072b7819008c3576ae8b91296640f593302aa47..cf0f47a2a02084b7474ca4807bbdbf76d459a92c 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,
           }