Skip to content

Commit 1838f1d

Browse files
committed
fixed a minor regression which prevented myrtille to work on old IE browsers
1 parent 43f8a8c commit 1838f1d

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
2020-12-06 Version 2.9.1 (stable)
1+
2021-01-08 Version 2.9.1 (stable)
22
fixed an issue where the installer hangs due to enabling Windows features (via PowerShell) that prompt the user to restart or not while there is no UI to confirm
33
fixed a regression when hiding the toolbar from web.config
44
fixed an issue into FreeRDP with a special copy&paste logic into MS Office applications which disconnected the session after a special paste when pressing the enter key
55
the protocol scheme when sharing a session or creating a session URL is now determined by the HTTP_X_FORWARDED_PROTO http header if available, instead of the current http request, so that https is correctly detected after a redirection by a reverse proxy or a load-balancer
66
now rolling over display updates and audio block indexes if they reach max int value
7+
fixed a minor regression which prevented myrtille to work on old IE browsers
78

89
2020-09-26 Version 2.9.0 (stable)
910
added a virtual on-screen keyboard (multi-languages)

Myrtille.Web/js/network/eventsource.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function Eventsource(base, config, dialog, display, network)
8888
JSON.parse(text);
8989
//dialog.showDebug('message data: ' + text);
9090
}
91-
catch
91+
catch (exc)
9292
{
9393
message = false;
9494
//dialog.showDebug('image data: ' + text);

Myrtille.Web/js/network/websocket.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ function Websocket(base, config, dialog, display, network)
296296
JSON.parse(text);
297297
//dialog.showDebug('message data: ' + text);
298298
}
299-
catch
299+
catch (exc)
300300
{
301301
message = false;
302302
//dialog.showDebug('image data: ' + text);

Myrtille.Web/js/network/xmlhttp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ function XmlHttp(base, config, dialog, display, network)
235235
JSON.parse(text);
236236
//dialog.showDebug('message data: ' + text);
237237
}
238-
catch
238+
catch (exc)
239239
{
240240
message = false;
241241
//dialog.showDebug('image data: ' + text);

0 commit comments

Comments
 (0)