don't record file twice if user clicked 'download' before 'play'

This commit is contained in:
seanyesmunt 2018-08-22 15:54:52 -04:00 committed by Thomas Zarebczan
parent c077c9103d
commit 9b199565b0
2 changed files with 7 additions and 1 deletions

View file

@ -46,6 +46,7 @@ class MediaPlayer extends React.PureComponent {
const loadedMetadata = () => {
this.setState({ hasMetadata: true, startedPlaying: true });
if (startedPlayingCb) {
startedPlayingCb();
}

View file

@ -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();