summaryrefslogtreecommitdiff
path: root/web/share/js/kvm/stream.js
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2024-09-23 02:32:38 +0300
committerMaxim Devaev <[email protected]>2024-09-23 02:32:38 +0300
commit8209ee2eb0bd411c74d7d7dbf7b1b79e46dd79c0 (patch)
tree44fbe8a26d88840b87d6f4ecfcb3d54544f31952 /web/share/js/kvm/stream.js
parent5ed368769c889628ebae896556e5c6401cbafdaf (diff)
improved wm dialogs
Diffstat (limited to 'web/share/js/kvm/stream.js')
-rw-r--r--web/share/js/kvm/stream.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/share/js/kvm/stream.js b/web/share/js/kvm/stream.js
index 1b93e7c4..f96f02d2 100644
--- a/web/share/js/kvm/stream.js
+++ b/web/share/js/kvm/stream.js
@@ -297,7 +297,7 @@ export function Streamer() {
__resetStream();
tools.httpPost("/api/streamer/reset", null, function(http) {
if (http.status !== 200) {
- wm.error("Can't reset stream:<br>", http.responseText);
+ wm.error("Can't reset stream", http.responseText);
}
});
}
@@ -307,7 +307,7 @@ export function Streamer() {
var __sendParam = function(name, value) {
tools.httpPost("/api/streamer/set_params", {[name]: value}, function(http) {
if (http.status !== 200) {
- wm.error("Can't configure stream:<br>", http.responseText);
+ wm.error("Can't configure stream", http.responseText);
}
});
};