aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/filesystem/PVRDirectory.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/xbmc/filesystem/PVRDirectory.cpp b/xbmc/filesystem/PVRDirectory.cpp
index 29f7693698..7680f58fba 100644
--- a/xbmc/filesystem/PVRDirectory.cpp
+++ b/xbmc/filesystem/PVRDirectory.cpp
@@ -118,5 +118,6 @@ bool CPVRDirectory::IsLiveTV(const std::string& strPath)
bool CPVRDirectory::HasRecordings()
{
- return g_PVRRecordings->GetNumRecordings() > 0;
+ return g_PVRManager.IsStarted() ?
+ g_PVRRecordings->GetNumRecordings() > 0 : false;
}