From f5021a0fdfcfc8a90268c11018d72e05027e75af Mon Sep 17 00:00:00 2001 From: Smittix Date: Sun, 8 Feb 2026 15:39:28 +0000 Subject: [PATCH] Fix GSM band name mismatch between UI and backend UI was sending GSM900 but backend REGIONAL_BANDS expects EGSM900 for Europe and Asia regions, causing validation rejection. Co-Authored-By: Claude Opus 4.6 --- templates/gsm_spy_dashboard.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/gsm_spy_dashboard.html b/templates/gsm_spy_dashboard.html index e2e6776..fc2794b 100644 --- a/templates/gsm_spy_dashboard.html +++ b/templates/gsm_spy_dashboard.html @@ -1343,7 +1343,7 @@ // Band configurations by region const BAND_CONFIG = { 'Europe': [ - { name: 'GSM900', label: 'GSM900 (925-960 MHz)', freq: '925-960 MHz', common: true, recommended: true }, + { name: 'EGSM900', label: 'EGSM900 (925-960 MHz)', freq: '925-960 MHz', common: true, recommended: true }, { name: 'GSM850', label: 'GSM850 (869-894 MHz)', freq: '869-894 MHz', common: true, recommended: true }, { name: 'GSM800', label: 'GSM800 (832-862 MHz)', freq: '832-862 MHz', common: true, recommended: true }, { name: 'DCS1800', label: 'DCS1800 (1805-1880 MHz)', freq: '1805-1880 MHz', common: false, recommended: false } @@ -1353,7 +1353,7 @@ { name: 'PCS1900', label: 'PCS1900 (1930-1990 MHz)', freq: '1930-1990 MHz', common: true, recommended: true } ], 'Asia': [ - { name: 'GSM900', label: 'GSM900 (925-960 MHz)', freq: '925-960 MHz', common: true, recommended: true }, + { name: 'EGSM900', label: 'EGSM900 (925-960 MHz)', freq: '925-960 MHz', common: true, recommended: true }, { name: 'DCS1800', label: 'DCS1800 (1805-1880 MHz)', freq: '1805-1880 MHz', common: true, recommended: true } ] };