diff --git a/static/galene.js b/static/galene.js index 586a04a..4025b87 100644 --- a/static/galene.js +++ b/static/galene.js @@ -2221,6 +2221,13 @@ function setMediaStatus(c) { } else { media.classList.add('media-failed'); } + + if(!c.up && status === 'failed') { + let from = c.username ? + `from user ${c.username}` : + 'from anonymous user'; + displayWarning(`Cannot receive media ${from}, still trying...`); + } }