rectify error in sending clientDialVer in application status query

This commit is contained in:
Shruti Ranganathan Jothi
2017-03-08 12:57:50 -08:00
parent 6a0edc87dc
commit 11e4eaf2ac
11 changed files with 47 additions and 16 deletions

View File

@@ -47,7 +47,7 @@ function getApplicationStatus(host, app, clientDialVer) {
return new Q()
.then(constructAppResourceUrl.bind(null, host, app))
.then(function (appResourceUrl) {
appResourceUrl += clientDialVer === "2.1" ? "?clientDialVer='2.1'" : "";
appResourceUrl += clientDialVer === "2.1" ? "?clientDialVer=2.1" : "";
return appResourceUrl;
})
.then(function (appResourceUrl) {