Show human-readable error name in error dialog title

Fixes RPC server's JSON encoding of exception's name.

It allows to show the name in Web UI's error dialog title.
This commit is contained in:
Petr Vobornik
2013-08-22 13:48:44 +02:00
committed by Petr Viktorin
parent edf92f7650
commit 34342b9a97
2 changed files with 3 additions and 2 deletions

View File

@@ -733,7 +733,8 @@ IPA.command = function(spec) {
} else if (data.error) {
// error_handler() calls IPA.hide_activity_icon()
error_handler.call(this, xhr, text_status, /* error_thrown */ {
name: text.get('@i18n:errors.ipa_error', 'IPA Error')+' '+data.error.code,
name: text.get('@i18n:errors.ipa_error', 'IPA Error') + ' ' +
data.error.code + ': ' + data.error.name,
code: data.error.code,
message: data.error.message,
data: data