don't record file twice if user clicked 'download' before 'play'
This commit is contained in:
parent
c077c9103d
commit
9b199565b0
2 changed files with 7 additions and 1 deletions
|
@ -46,6 +46,7 @@ class MediaPlayer extends React.PureComponent {
|
|||
|
||||
const loadedMetadata = () => {
|
||||
this.setState({ hasMetadata: true, startedPlaying: true });
|
||||
|
||||
if (startedPlayingCb) {
|
||||
startedPlayingCb();
|
||||
}
|
||||
|
|
|
@ -146,7 +146,12 @@ class FileViewer extends React.PureComponent<Props> {
|
|||
}
|
||||
|
||||
playContent() {
|
||||
const { play, uri } = this.props;
|
||||
const { play, uri, fileInfo, isDownloading, isLoading } = this.props;
|
||||
|
||||
if (fileInfo || isDownloading || isLoading) {
|
||||
// User may have pressed download before clicking play
|
||||
this.startedPlayingCb = null;
|
||||
}
|
||||
|
||||
if (this.startedPlayingCb) {
|
||||
this.startTime = Date.now();
|
||||
|
|
Loading…
Reference in a new issue