Skip to content

Commit

Permalink
Remove unneeded warning message.
Browse files Browse the repository at this point in the history
  • Loading branch information
g4klx committed May 8, 2021
1 parent e6fc679 commit c0e3fd0
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions MMDVMHost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,13 +386,9 @@ int CMMDVMHost::run()
}

if (m_fmEnabled && m_conf.getFMNetworkEnabled()) {
if (m_modem->getVersion() == 1U) {
LogWarning("FM networking enabled in the host but not available the modem firmware, disabling");
} else {
ret = createFMNetwork();
if (!ret)
return 1;
}
ret = createFMNetwork();
if (!ret)
return 1;
}

if (m_ax25Enabled && m_conf.getAX25NetworkEnabled()) {
Expand Down

0 comments on commit c0e3fd0

Please sign in to comment.