mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-06-03 19:53:33 -07:00
GPS information included in PCAP files as comment and with Kismet proposed standard
This commit is contained in:
committed by
Will Greenberg
parent
c107314194
commit
adb316e2d7
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user