mirror of
https://github.com/moonlight-stream/moonlight-chrome.git
synced 2025-08-18 00:56:38 +00:00
Add a friendly error message when no video traffic is received
This commit is contained in:
parent
7174ad265d
commit
8a962927ed
@ -1 +1 @@
|
|||||||
Subproject commit 247b1fe0e32d80ce02ede4c2b4a835b9c085abe4
|
Subproject commit f596e805755cf0b83c14375bc5c9aa182b1766e0
|
@ -43,7 +43,12 @@ function handleMessage(msg) {
|
|||||||
// Show a termination snackbar message if the termination was unexpected
|
// Show a termination snackbar message if the termination was unexpected
|
||||||
var errorCode = parseInt(msg.data.replace('streamTerminated: ', ''));
|
var errorCode = parseInt(msg.data.replace('streamTerminated: ', ''));
|
||||||
if (errorCode !== 0) {
|
if (errorCode !== 0) {
|
||||||
snackbarLogLong("Connection terminated");
|
if (errorCode === -100) { // ML_ERROR_NO_VIDEO_TRAFFIC
|
||||||
|
snackbarLogLong("No video received from host. Check the host PC's firewall and port forwarding rules.");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
snackbarLogLong("Connection terminated");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
api.refreshServerInfo().then(function(ret) {
|
api.refreshServerInfo().then(function(ret) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user