aboutsummaryrefslogtreecommitdiff
path: root/xbmc/video/windows/GUIWindowVideoBase.cpp
diff options
context:
space:
mode:
authorArne Morten Kvarving <spiff@kodi.tv>2024-04-22 20:04:10 +0200
committerGitHub <noreply@github.com>2024-04-22 20:04:10 +0200
commita5fb12b4637c62a47a59fcc50f2c88246e9d6fff (patch)
treea220c28eb978385abe364a17585057a7b579cffc /xbmc/video/windows/GUIWindowVideoBase.cpp
parent5e6d5de2c6a151683b77ac34abce8fae8294b7b9 (diff)
parent57a427b8ddc0afa8db4302113605f6a1e0d3e8a0 (diff)
downloadxbmc-a5fb12b4637c62a47a59fcc50f2c88246e9d6fff.tar.xz
Merge pull request #25031 from notspiff/move_is_video_asset
move IsVideoAssetsFile to VideoFileItemClassify
Diffstat (limited to 'xbmc/video/windows/GUIWindowVideoBase.cpp')
-rw-r--r--xbmc/video/windows/GUIWindowVideoBase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/video/windows/GUIWindowVideoBase.cpp b/xbmc/video/windows/GUIWindowVideoBase.cpp
index 2e320c603e..13c1bd25d2 100644
--- a/xbmc/video/windows/GUIWindowVideoBase.cpp
+++ b/xbmc/video/windows/GUIWindowVideoBase.cpp
@@ -428,7 +428,7 @@ bool CGUIWindowVideoBase::ShowInfo(const CFileItemPtr& item2, const ScraperPtr&
if (bHasInfo)
{
// @todo add support to refresh movie version information
- if (!info || info->Content() == CONTENT_NONE || VIDEO::IsVideoAssetFile(*item))
+ if (!info || info->Content() == CONTENT_NONE || IsVideoAssetFile(*item))
item->SetProperty("xxuniqueid", "xx" + movieDetails.GetUniqueID()); // disable refresh button
item->SetProperty("CheckAutoPlayNextItem", IsActive());
*item->GetVideoInfoTag() = movieDetails;