Skip to content

Commit

Permalink
fix: ignore spaces in comma separated lists configs
Browse files Browse the repository at this point in the history
  • Loading branch information
gikari committed Apr 9, 2022
1 parent 748d991 commit fb78513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/ts-proxy.cpp
Expand Up @@ -93,7 +93,7 @@ QJSValue TSProxy::jsConfig()
if (asNumbers) {
arrayProperty.setProperty(i, value.toInt());
} else {
arrayProperty.setProperty(i, value);
arrayProperty.setProperty(i, value.trimmed());
}
}
};
Expand Down

0 comments on commit fb78513

Please sign in to comment.