diff --git a/html/script.js b/html/script.js
index 16ea306..c2753d0 100644
--- a/html/script.js
+++ b/html/script.js
@@ -4117,7 +4117,9 @@ function onSearch(e) {
results = findPlanes(searchTerm, "byIcao", "byCallsign", "byReg", "byType", true);
if (results.length > 0 && globeIndex) {
toggleIsolation("on");
- getTrace(null, null, {onlyRecent: true, list: results});
+ if (results.length < 20) {
+ getTrace(null, null, {onlyRecent: true, list: results});
+ }
}
return false;
}