diff options
Diffstat (limited to 'src/static/js')
-rw-r--r-- | src/static/js/admin/plugins.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/static/js/admin/plugins.js b/src/static/js/admin/plugins.js index 6c939dc2..d337da03 100644 --- a/src/static/js/admin/plugins.js +++ b/src/static/js/admin/plugins.js @@ -225,6 +225,9 @@ $(document).ready(function () { socket.on('finished:install', function(data) { if(data.error) { + if(data.code === "EPEERINVALID"){ + alert("This plugin requires that you update Etherpad so it can operate in it's true glory"); + } alert('An error occured while installing '+data.plugin+' \n'+data.error) $('#installed-plugins .'+data.plugin).remove() } |