bunch of js === and !== fixes

This commit is contained in:
Maxim Devaev
2025-02-02 07:15:03 +02:00
parent 4800f9e486
commit 1899902860
5 changed files with 11 additions and 11 deletions

View File

@@ -78,7 +78,7 @@ export function Streamer() {
if (__streamer.getMode() === "janus") { // Right now it's working only for H.264
let orient = parseInt(tools.radio.getValue("stream-orient-radio"));
tools.storage.setInt("stream.orient", orient);
if (__streamer.getOrientation() != orient) {
if (__streamer.getOrientation() !== orient) {
__resetStream();
}
}