aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/video/windows/GUIWindowVideoBase.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/xbmc/video/windows/GUIWindowVideoBase.cpp b/xbmc/video/windows/GUIWindowVideoBase.cpp
index 2d1e033a35..26a1769790 100644
--- a/xbmc/video/windows/GUIWindowVideoBase.cpp
+++ b/xbmc/video/windows/GUIWindowVideoBase.cpp
@@ -544,7 +544,9 @@ bool CGUIWindowVideoBase::OnSelect(int iItem)
if (!item->m_bIsFolder && path != "add" &&
!StringUtils::StartsWith(path, "newsmartplaylist://") &&
!StringUtils::StartsWith(path, "newplaylist://") &&
- !StringUtils::StartsWith(path, "newtag://") && !StringUtils::StartsWith(path, "script://"))
+ !StringUtils::StartsWith(path, "newtag://") && !StringUtils::StartsWith(path, "script://") &&
+ !StringUtils::StartsWith(path, "plugin://") && !item->HasProperty("IsPlayable") &&
+ !item->GetProperty("IsPlayable").asBoolean())
return OnFileAction(iItem, CVideoSelectActionProcessorBase::GetDefaultSelectAction(), "");
return CGUIMediaWindow::OnSelect(iItem);