Skip to content
Snippets Groups Projects
Commit e8eeb922 authored by Tamas Kis's avatar Tamas Kis
Browse files

[incident#1584976] DsRestAPI/DsRestAPIComm.js returned "no answer" response.

Problem fixed.

Signed-off-by: default avatarTamas Levente Kiss <tamas.levente.kiss@ericsson.com>
parent 073330cb
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ function CDsRestAPIComm(p_extension) {
{
try {
var contentlist = JSON.parse(data).contentList;
if (contentlist.length == 1 && contentlist[0].node.val == "timeout")
if (contentlist.length == 1 && contentlist[0].node != undefined && contentlist[0].node.val == "timeout")
{
mThis.handleError("Timeout received from server", "Overload", aHandler, end, start);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment