We don't need toLowerCas() for app argument, as it is used for passing CFBundleIdentifier, fixes #2131

This commit is contained in:
Vitalii Grygoruk
2014-03-31 23:39:19 +02:00
parent a928cab752
commit 0cbfa68b4a

View File

@@ -36,7 +36,7 @@ Device.prototype.setArgFromCap = function (arg, cap) {
};
Device.prototype.appString = function () {
return this.args.app ? this.args.app.toString().toLowerCase() : '';
return this.args.app ? this.args.app.toString() : '';
};
Device.prototype.configureApp = function (cb) {