Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

vnsi: having no signal quality is no error #61

Merged
merged 1 commit into from
Oct 15, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/pvr.vdr.vnsi/src/VNSIDemux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ bool cVNSIDemux::SwitchChannel(const PVR_CHANNEL &channelinfo)
bool cVNSIDemux::GetSignalStatus(PVR_SIGNAL_STATUS &qualityinfo)
{
if (m_Quality.fe_name.empty())
return false;
return true;

strncpy(qualityinfo.strAdapterName, m_Quality.fe_name.c_str(), sizeof(qualityinfo.strAdapterName));
strncpy(qualityinfo.strAdapterStatus, m_Quality.fe_status.c_str(), sizeof(qualityinfo.strAdapterStatus));
Expand Down