Skip to content

Commit

Permalink
Fix IQ Tool save time offset
Browse files Browse the repository at this point in the history
  • Loading branch information
vladisslav2011 committed May 30, 2024
1 parent 5efe844 commit a9d29fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/applications/gqrx/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2171,7 +2171,8 @@ void MainWindow::seekIqFile(qint64 seek_pos)

void MainWindow::saveFileRange(const QString& recdir, file_formats fmt, quint64 from_ms, quint64 len_ms)
{
std::string name=makeIQFilename(recdir,fmt,QDateTime::fromMSecsSinceEpoch(from_ms)).toStdString();
auto rectime=QDateTime::fromMSecsSinceEpoch(from_ms).toUTC();
std::string name=makeIQFilename(recdir,fmt,rectime).toStdString();
rx->save_file_range_ts(from_ms,len_ms,name);
}

Expand Down

0 comments on commit a9d29fb

Please sign in to comment.