summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/field.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2014-06-18 18:59:44 +0200
committerPetr Vobornik <pvoborni@redhat.com>2014-06-27 14:18:35 +0200
commit59f66a156be393dba92ab6ca999cdc39c6787c36 (patch)
treeff09870927ede7f66edf4d2d3c988e755cb79e2d /install/ui/src/freeipa/field.js
parente6a373e930ae483bc2eb384da0bba5f2b4b8f6c2 (diff)
downloadfreeipa-59f66a156be393dba92ab6ca999cdc39c6787c36.tar.gz
freeipa-59f66a156be393dba92ab6ca999cdc39c6787c36.tar.xz
freeipa-59f66a156be393dba92ab6ca999cdc39c6787c36.zip
webui: fix detection of RPC command
old detection did not work with the static version used for test and demonstration purposes. https://fedorahosted.org/freeipa/ticket/4357 Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
Diffstat (limited to 'install/ui/src/freeipa/field.js')
-rw-r--r--install/ui/src/freeipa/field.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/src/freeipa/field.js b/install/ui/src/freeipa/field.js
index 1ae3ddf3e..0bc8c6f5e 100644
--- a/install/ui/src/freeipa/field.js
+++ b/install/ui/src/freeipa/field.js
@@ -775,8 +775,8 @@ field.Adapter = declare(null, {
get_record: function(data) {
// detection if it's result or raw RPC command response
- // all raw responses should contain `version` and `principal`
- if (!data.version || !data.principal) {
+ // each RPC response should define properties as follows
+ if (data.id === undefined || data.result === undefined || data.error === undefined) {
return data;
}