From 42e67f019d68156885dca8485856eb5e71c51da6 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Fri, 10 Jan 2025 21:10:28 +0200 Subject: [PATCH] capabilities: fix mime type --- pkg/connector/capabilities.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/connector/capabilities.go b/pkg/connector/capabilities.go index 027b2df..ead01b7 100644 --- a/pkg/connector/capabilities.go +++ b/pkg/connector/capabilities.go @@ -92,10 +92,10 @@ var metaCaps = &event.RoomFeatures{ }, event.MsgAudio: { MimeTypes: map[string]event.CapabilitySupportLevel{ - "audio/m4a": event.CapLevelFullySupported, - "audio/mp3": event.CapLevelFullySupported, - "audio/mp4": event.CapLevelFullySupported, - "audio/wav": event.CapLevelFullySupported, + "audio/m4a": event.CapLevelFullySupported, + "audio/mpeg": event.CapLevelFullySupported, + "audio/mp4": event.CapLevelFullySupported, + "audio/wav": event.CapLevelFullySupported, }, Caption: event.CapLevelDropped, MaxSize: MaxFileSize,