Issue #19 Improve DX Cluster Exclusion (partial)

remove DE filtering inadvertantly left in usDXCluster.js
pull/105/head
Rich Freedman 1 day ago
parent 21f07d1cb2
commit 10fab96530

@ -34,8 +34,7 @@ export const useDXCluster = (source = 'auto', filters = {}) => {
// Exclude list - hide matching calls - match the call as a prefix // Exclude list - hide matching calls - match the call as a prefix
if (filters.excludeList?.length > 0) { if (filters.excludeList?.length > 0) {
const isExcluded = filters.excludeList.some(exc => const isExcluded = filters.excludeList.some(exc =>
spot.call?.toUpperCase().startsWith(exc.toUpperCase()) || spot.call?.toUpperCase().startsWith(exc.toUpperCase())
spot.spotter?.toUpperCase().startsWith(exc.toUpperCase())
); );
if (isExcluded) return false; if (isExcluded) return false;
} }

Loading…
Cancel
Save

Powered by TurnKey Linux.