We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b80f25f commit 8873597Copy full SHA for 8873597
Parse/src/main/java/com/parse/ParsePlugins.java
@@ -106,7 +106,8 @@ public Response intercept(Chain chain) throws IOException {
106
.set(ParseRESTCommand.HEADER_APP_BUILD_VERSION,
107
String.valueOf(ManifestInfo.getVersionCode()))
108
.set(ParseRESTCommand.HEADER_APP_DISPLAY_VERSION,
109
- ManifestInfo.getVersionName());
+ ManifestInfo.getVersionName())
110
+ .set(ParseRESTCommand.USER_AGENT, userAgent());
111
if (request.header(ParseRESTCommand.HEADER_INSTALLATION_ID) == null) {
112
// We can do this synchronously since the caller is already on a background thread
113
headersBuilder.set(ParseRESTCommand.HEADER_INSTALLATION_ID, installationId().get());
0 commit comments