Skip to content

Commit

Permalink
Version 285:
Browse files Browse the repository at this point in the history
* Fixed bug where the pause icon overlay failed to appear over cameras that are paused indefinitely.
  • Loading branch information
bp2008 committed Feb 22, 2025
1 parent 92c4ac3 commit d89839d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui3.htm
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
function isUrlPathBad(b) { const c = /^[A-Za-z0-9=_-]+$/; try { const a = (new URL(b)).pathname.slice(1); return 20 < a.length && c.test(a) } catch (a) { return !1 } };
</script>
<script type="text/javascript">
var ui_version = "284";
var ui_version = "285";
var bi_version = "%%VERSION%%";
var appPath_raw = "%%VIRTDIR%%";
var local_bi_session = "%%SESSION%%";
Expand Down
2 changes: 1 addition & 1 deletion ui3/ui3.js
Original file line number Diff line number Diff line change
Expand Up @@ -22283,7 +22283,7 @@ function GetCameraOverlayIcons(cameraId)
icons.push({ id: "generic_trigger", svg: "#svg_x5F_Alert1" });
}
if (settings.ui3_camera_overlay_icon_paused === "1"
&& cam.pause > 0)
&& cam.isPaused)
{
icons.push({ id: "camera_paused", svg: "#svg_x5F_Pause", color: "rgba(255,128,64,1)" });
}
Expand Down

0 comments on commit d89839d

Please sign in to comment.