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 a2e1091 commit f964e12Copy full SHA for f964e12
src/helpers/connectionOptions.ts
@@ -29,12 +29,12 @@ export async function setAppNameParamIfMissing({
29
return connectionStringUrl.toString();
30
}
31
32
+ const appName = components.appName || "unknown";
33
const deviceId = components.deviceId ? await components.deviceId : "unknown";
-
34
const clientName = components.clientName || "unknown";
35
36
// Build the extended appName format: appName--deviceId--clientName
37
- const extendedAppName = `${components.appName}--${deviceId}--${clientName}`;
+ const extendedAppName = `${appName}--${deviceId}--${clientName}`;
38
39
searchParams.set("appName", extendedAppName);
40
0 commit comments