summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-08-16 10:35:51 +0300
committerDevaev Maxim <[email protected]>2020-08-16 10:35:51 +0300
commitadc1955b5e0d03ca3c0b2dcce9a7d0d225cd5da3 (patch)
tree96d672fd429cd26d325b588840914c1ac8dfdfe7
parent8c400299562d4101a9a953b85f7e01744f14d005 (diff)
js fix
-rw-r--r--web/share/js/kvm/stream.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/share/js/kvm/stream.js b/web/share/js/kvm/stream.js
index 5a85b41b..87731ed9 100644
--- a/web/share/js/kvm/stream.js
+++ b/web/share/js/kvm/stream.js
@@ -124,7 +124,7 @@ export function Streamer() {
}
if (state.features.resolution) {
- if (__available_resolutions != state.limits.available_resolutions) {
+ if (__available_resolutions !== state.limits.available_resolutions) {
__available_resolutions = state.limits.available_resolutions;
let resolutions_html = "";
for (let variant of __available_resolutions) {