Skip to content

Commit

Permalink
Simplify DVR subscription required message
Browse files Browse the repository at this point in the history
  • Loading branch information
djp952 committed Apr 9, 2019
1 parent c9a86c9 commit 4a7c86e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/pvr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3183,8 +3183,8 @@ PVR_ERROR AddTimer(PVR_TIMER const& timer)
std::string authorization = get_authorization_strings(dbhandle, true);
if(authorization.length() == 0) {

g_gui->Dialog_OK_ShowAndGetInput("DVR Service Subscription Required", "This operation requires at least one HDHomeRun tuner "
"associated with an active HDHomeRun DVR Service subscription.", "", "https://www.silicondust.com/dvr-service/");
g_gui->Dialog_OK_ShowAndGetInput("DVR Service Subscription Required", "Timer operations require an active HDHomeRun DVR Service subscription.",
"", "https://www.silicondust.com/dvr-service/");
return PVR_ERROR::PVR_ERROR_NO_ERROR;
}

Expand Down Expand Up @@ -3323,8 +3323,8 @@ PVR_ERROR DeleteTimer(PVR_TIMER const& timer, bool /*force*/)
std::string authorization = get_authorization_strings(dbhandle, true);
if(authorization.length() == 0) {

g_gui->Dialog_OK_ShowAndGetInput("DVR Service Subscription Required", "This operation requires at least one HDHomeRun tuner "
"associated with an active HDHomeRun DVR Service subscription.", "", "https://www.silicondust.com/dvr-service/");
g_gui->Dialog_OK_ShowAndGetInput("DVR Service Subscription Required", "Timer operations require an active HDHomeRun DVR Service subscription.",
"", "https://www.silicondust.com/dvr-service/");
return PVR_ERROR::PVR_ERROR_NO_ERROR;
}

Expand Down Expand Up @@ -3389,8 +3389,8 @@ PVR_ERROR UpdateTimer(PVR_TIMER const& timer)
std::string authorization = get_authorization_strings(dbhandle, true);
if(authorization.length() == 0) {

g_gui->Dialog_OK_ShowAndGetInput("DVR Service Subscription Required", "This operation requires at least one HDHomeRun tuner "
"associated with an active HDHomeRun DVR Service subscription.", "", "https://www.silicondust.com/dvr-service/");
g_gui->Dialog_OK_ShowAndGetInput("DVR Service Subscription Required", "Timer operations require an active HDHomeRun DVR Service subscription.",
"", "https://www.silicondust.com/dvr-service/");
return PVR_ERROR::PVR_ERROR_NO_ERROR;
}

Expand Down

0 comments on commit 4a7c86e

Please sign in to comment.