Skip to content

Commit

Permalink
capabilities: fix mime type
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Jan 10, 2025
1 parent 261268c commit 42e67f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/connector/capabilities.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 42e67f0

Please sign in to comment.