Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit d136117

Browse files
committed
Update MSC number references for voice messages
as per matrix-org/matrix-spec-proposals#3245
1 parent 416563d commit d136117

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

src/components/views/messages/MVoiceOrAudioBody.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ interface IProps {
2828
@replaceableComponent("views.messages.MVoiceOrAudioBody")
2929
export default class MVoiceOrAudioBody extends React.PureComponent<IProps> {
3030
public render() {
31-
const isVoiceMessage = !!this.props.mxEvent.getContent()['org.matrix.msc2516.voice'];
31+
// MSC2516 is a legacy identifier. See https://github.com/matrix-org/matrix-doc/pull/3245
32+
const isVoiceMessage = !!this.props.mxEvent.getContent()['org.matrix.msc2516.voice']
33+
|| !!this.props.mxEvent.getContent()['org.matrix.msc3245.voice'];
3234
const voiceMessagesEnabled = SettingsStore.getValue("feature_voice_messages");
3335
if (isVoiceMessage && voiceMessagesEnabled) {
3436
return <MVoiceMessageBody {...this.props} />;

src/components/views/rooms/VoiceRecordComposerTile.tsx

+4-7
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ export default class VoiceRecordComposerTile extends React.PureComponent<IProps,
7777
size: this.state.recorder.contentLength,
7878
},
7979

80-
// MSC1767 experiment
80+
// MSC1767 + Ideals of MSC2516 as MSC3245
81+
// https://github.com/matrix-org/matrix-doc/pull/3245
8182
"org.matrix.msc1767.text": "Voice message",
8283
"org.matrix.msc1767.file": {
8384
url: mxc,
@@ -88,14 +89,10 @@ export default class VoiceRecordComposerTile extends React.PureComponent<IProps,
8889
"org.matrix.msc1767.audio": {
8990
duration: Math.round(this.state.recorder.durationSeconds * 1000),
9091

91-
// Events can't have floats, so we try to maintain resolution by using 1024
92-
// as a maximum value. The waveform contains values between zero and 1, so this
93-
// should come out largely sane.
94-
//
95-
// We're expecting about one data point per second of audio.
92+
// https://github.com/matrix-org/matrix-doc/pull/3246
9693
waveform: this.state.recorder.getPlayback().waveform.map(v => Math.round(v * 1024)),
9794
},
98-
"org.matrix.msc2516.voice": {}, // No content, this is a rendering hint
95+
"org.matrix.msc3245.voice": {}, // No content, this is a rendering hint
9996
});
10097
await this.disposeRecording();
10198
}

0 commit comments

Comments
 (0)