Add the word enable for clarity

This commit is contained in:
Gabe Kangas
2022-04-08 23:14:10 -07:00
parent 568ecc7ddf
commit d2be4a4ed8
2 changed files with 1 additions and 3 deletions

View File

@@ -376,8 +376,6 @@ class LatencyCompensator {
setTimeout(() => { setTimeout(() => {
if (this.bufferingCounter > 0) { if (this.bufferingCounter > 0) {
this.bufferingCounter--; this.bufferingCounter--;
// Allow a time jump after a long buffer if applicable.
this.lastJumpOccurred = null;
} }
}, BUFFERING_AMNESTY_DURATION); }, BUFFERING_AMNESTY_DURATION);
} }

View File

@@ -150,7 +150,7 @@ class OwncastPlayer {
this.LatencyCompensator = null; this.LatencyCompensator = null;
this.latencyCompensatorEnabled = false; this.latencyCompensatorEnabled = false;
this.setLatencyCompensatorItemTitle( this.setLatencyCompensatorItemTitle(
'<span style="font-size: 0.8em">minimize latency (experimental)</span>' '<span style="font-size: 0.8em">enable minimized latency (experimental)</span>'
); );
} }