GPS information included in PCAP files as comment and with Kismet proposed standard

This commit is contained in:
Carlos Guerra
2026-03-28 22:29:41 +01:00
committed by Will Greenberg
parent c107314194
commit adb316e2d7
7 changed files with 291 additions and 18 deletions
+1 -1
View File
@@ -164,7 +164,7 @@ export interface GpsData {
}
export async function get_gps(): Promise<GpsData | null> {
const response = await fetch('/api/gps');
const response = await fetch('/api/gps', { cache: 'no-store' });
if (response.status === 404) {
return null;
}