Disable support for the latency compensator in the player (#4348)

* chore(web): disable support for the latency compensator. Closes #4224

* Javascript formatting autofixes

---------

Co-authored-by: Owncast <owncast@owncast.online>
This commit is contained in:
Gabe Kangas
2025-05-20 20:00:03 -07:00
committed by GitHub
co-authored by Owncast
parent babe5da40a
commit 77da953781
+1 -1
View File
@@ -94,7 +94,7 @@ export function createVideoSettingsMenuButton(
defaultAutoItem.selected(true); defaultAutoItem.selected(true);
}); });
const supportsLatencyCompensator = !!tech && !!tech.vhs; const supportsLatencyCompensator = false; //! !tech && !!tech.vhs;
// Only show the quality selector if there is more than one option. // Only show the quality selector if there is more than one option.
if (qualities.length < 2 && supportsLatencyCompensator) { if (qualities.length < 2 && supportsLatencyCompensator) {