Remove hard coded scale=32 for the stream image.

This commit is contained in:
Isaac Connor
2026-01-30 11:40:58 -05:00
parent 41d3a25964
commit b254ea60a8

View File

@@ -1268,7 +1268,7 @@ function determineOverlaySrc(img, streamType, monitorId, useGo2rtc) {
if (currentView === 'frames') return img.getAttribute('full_img_src');
const streamSrc = img.getAttribute('stream_src');
return streamSrc ? streamSrc.replace(/scale=\d+/, 'scale=32') : null;
return streamSrc;
}
function calculateOverlayDimensions(img) {