Only send audio notifcation if segment is manually skipped

This commit is contained in:
Joe Dowd
2020-10-19 16:11:16 +01:00
parent 896dc602cd
commit ff174f946a

View File

@@ -132,7 +132,7 @@ class SkipNoticeComponent extends React.Component<SkipNoticeProps, SkipNoticeSta
componentDidMount() {
if (Config.config.audioNotificationOnSkip && this.audio) {
this.audio.volume = this.contentContainer().v.volume * 0.1;
this.audio.play();
if (this.autoSkip) this.audio.play();
}
}