aboutsummaryrefslogtreecommitdiff
path: root/xbmc/cores/playercorefactory/PlayerSelectionRule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/cores/playercorefactory/PlayerSelectionRule.cpp')
-rw-r--r--xbmc/cores/playercorefactory/PlayerSelectionRule.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/cores/playercorefactory/PlayerSelectionRule.cpp b/xbmc/cores/playercorefactory/PlayerSelectionRule.cpp
index 6f78649d42..3bee50aa06 100644
--- a/xbmc/cores/playercorefactory/PlayerSelectionRule.cpp
+++ b/xbmc/cores/playercorefactory/PlayerSelectionRule.cpp
@@ -126,7 +126,7 @@ void CPlayerSelectionRule::GetPlayers(const CFileItem& item, std::vector<std::st
return;
if (m_tInternetStream >= 0 && (m_tInternetStream > 0) != NETWORK::IsInternetStream(item))
return;
- if (m_tRemote >= 0 && (m_tRemote > 0) != item.IsRemote())
+ if (m_tRemote >= 0 && (m_tRemote > 0) != NETWORK::IsRemote(item))
return;
if (m_tBD >= 0 && (m_tBD > 0) != (VIDEO::IsBDFile(item) && item.IsOnDVD()))