diff --git a/src/server.tsx b/src/server.tsx index c5d02b1a3..28bd9779f 100644 --- a/src/server.tsx +++ b/src/server.tsx @@ -49,7 +49,7 @@ function appNameWithUpdateHint(query: ClientQuery): string { // section because it refers to the name given by client which is not fixed // for android emulators, so it is indicated as outdated so that developers // might want to update SDK to get rid of this connection swap problem - if (!query.sdk_version || query.sdk_version < 3) { + if (query.os === 'Android' && (!query.sdk_version || query.sdk_version < 3)) { return query.app + ' (Outdated SDK)'; } return query.app;