mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-07-16 04:48:10 -07:00
fixes requested, gps timestamp corrected, more error managing, more border conditions covered
This commit is contained in:
committed by
Will Greenberg
parent
5a4a3034be
commit
7bae34061d
+5
-2
@@ -43,7 +43,7 @@ use diag::{
|
||||
DiagDeviceCtrlMessage, delete_all_recordings, delete_recording, get_analysis_report,
|
||||
start_recording, stop_recording,
|
||||
};
|
||||
use log::{error, info};
|
||||
use log::{error, info, warn};
|
||||
use qmdl_store::RecordingStoreError;
|
||||
use rayhunter::Device;
|
||||
use stats::get_log;
|
||||
@@ -315,7 +315,10 @@ async fn run_with_config(
|
||||
longitude: lon,
|
||||
timestamp: 0,
|
||||
}),
|
||||
_ => None,
|
||||
_ => {
|
||||
warn!("gps_mode is Fixed but gps_fixed_latitude or gps_fixed_longitude is missing from config — no GPS coordinates will be recorded");
|
||||
None
|
||||
}
|
||||
}
|
||||
} else {
|
||||
None
|
||||
|
||||
Reference in New Issue
Block a user