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 9c3ad66 commit b723573Copy full SHA for b723573
src/tools/applive-utils/start-session.ts
@@ -68,10 +68,10 @@ export async function startSession(args: StartSessionArgs): Promise<string> {
68
69
if (exactMatch) {
70
matches.splice(0, matches.length, exactMatch); // Replace matches with the exact match
71
- } else if (matches.length > 1) {
+ } else if (matches.length >= 1) {
72
const names = matches.map((d) => d.display_name).join(", ");
73
throw new Error(
74
- `Multiple devices found: [${names}]. Select one out of them.`,
+ `Multiple/Alternative devices found: [${names}]. Select one out of them.`,
75
);
76
}
77
0 commit comments