mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 920092 - ensure printing human readable error message on app install error. r=paul
This commit is contained in:
parent
63f22382c7
commit
87a4401387
@ -320,10 +320,11 @@ let UI = {
|
||||
// And only when the toolbox is opened, release the button
|
||||
button.disabled = false;
|
||||
},
|
||||
(msg) => {
|
||||
(err) => {
|
||||
button.disabled = false;
|
||||
alert(msg);
|
||||
this.connection.log(msg);
|
||||
let message = err.error ? err.error + ": " + err.message : String(err);
|
||||
alert(message);
|
||||
this.connection.log(message);
|
||||
});
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user