Make it show skip right away instead of unskip on mute segments

Fixes #1075
This commit is contained in:
Ajay
2022-04-22 15:18:58 -04:00
parent 9e02e35c4d
commit b075116502
4 changed files with 86 additions and 52 deletions

View File

@@ -71,11 +71,11 @@ class SkipNotice {
}
toggleSkip(): void {
this.skipNoticeRef?.current?.prepAction(SkipNoticeAction.Unskip);
this.skipNoticeRef?.current?.prepAction(SkipNoticeAction.Unskip0);
}
unmutedListener(): void {
this.skipNoticeRef?.current?.unmutedListener();
unmutedListener(time: number): void {
this.skipNoticeRef?.current?.unmutedListener(time);
}
}