Skip to content

Commit

Permalink
RDS: PS/RT update indication experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
vladisslav2011 committed Nov 13, 2024
1 parent b78035f commit f27c5a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/applications/gqrx/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1862,12 +1862,12 @@ void MainWindow::rdsPIObserver(const c_id id, const c_def::v_union &value)

void MainWindow::rdsPSObserver(const c_id id, const c_def::v_union &value)
{
remote->setRdsStation(QString::fromStdString(value));
remote->setRdsStation(QString::fromStdString(value).mid(4));
}

void MainWindow::rdsRTObserver(const c_id id, const c_def::v_union &value)
{
remote->setRdsRadiotext(QString::fromStdString(value));
remote->setRdsRadiotext(QString::fromStdString(value).mid(4));
}

void MainWindow::audioRecObserver(const c_id id, const c_def::v_union &value)
Expand Down

0 comments on commit f27c5a1

Please sign in to comment.