stream-chat-angular 5.12.3 → 5.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/version.d.ts +1 -1
- package/esm2020/assets/version.mjs +2 -2
- package/esm2020/lib/voice-recorder/audio-recorder.service.mjs +4 -3
- package/fesm2015/stream-chat-angular.mjs +4 -2
- package/fesm2015/stream-chat-angular.mjs.map +1 -1
- package/fesm2020/stream-chat-angular.mjs +4 -2
- package/fesm2020/stream-chat-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/version.ts +1 -1
|
@@ -20,7 +20,7 @@ import transliterate from '@stream-io/transliterate';
|
|
|
20
20
|
import * as i8$1 from 'angular-mentions';
|
|
21
21
|
import { MentionModule } from 'angular-mentions';
|
|
22
22
|
|
|
23
|
-
const version = '5.12.
|
|
23
|
+
const version = '5.12.4';
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* The `NotificationService` can be used to add or remove notifications. By default the [`NotificationList`](/chat/docs/sdk/angular/components/NotificationListComponent/) component displays the currently active notifications.
|
|
@@ -6369,7 +6369,9 @@ class AudioRecorderService extends MultimediaRecorder {
|
|
|
6369
6369
|
* - For all other browsers we use audio/webm (which is then transcoded to wav)
|
|
6370
6370
|
*/
|
|
6371
6371
|
this.config = {
|
|
6372
|
-
mimeType:
|
|
6372
|
+
mimeType: MediaRecorder.isTypeSupported('audio/webm')
|
|
6373
|
+
? 'audio/webm'
|
|
6374
|
+
: 'audio/mp4;codecs=mp4a.40.2', // fallback for Safari
|
|
6373
6375
|
};
|
|
6374
6376
|
}
|
|
6375
6377
|
enrichWithExtraData() {
|