Disable download option on <video/> , preferring dedicated download button (#8403)
parent
6bfe0436e5
commit
a3f9123f6c
|
@ -281,6 +281,9 @@ export default class MVideoBody extends React.PureComponent<IBodyProps, IState>
|
||||||
src={contentUrl}
|
src={contentUrl}
|
||||||
title={content.body}
|
title={content.body}
|
||||||
controls
|
controls
|
||||||
|
// Disable downloading as it doesn't work with e2ee video,
|
||||||
|
// users should use the dedicated Download button in the Message Action Bar
|
||||||
|
controlsList="nodownload"
|
||||||
preload={preload}
|
preload={preload}
|
||||||
muted={autoplay}
|
muted={autoplay}
|
||||||
autoPlay={autoplay}
|
autoPlay={autoplay}
|
||||||
|
|
Loading…
Reference in New Issue