From 1b29060b464f6ec3be0fa031eef8ce0355ea4e0c Mon Sep 17 00:00:00 2001 From: Jonathan Marshall Date: Mon, 7 May 2012 22:31:11 +1200 Subject: [PATCH] GetWritersNav tried to use the studio link table instead of the writer link table --- xbmc/video/VideoDatabase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/video/VideoDatabase.cpp b/xbmc/video/VideoDatabase.cpp index 981d7911f28dc..3788461574e95 100644 --- a/xbmc/video/VideoDatabase.cpp +++ b/xbmc/video/VideoDatabase.cpp @@ -4270,7 +4270,7 @@ bool CVideoDatabase::GetMusicVideoAlbumsNav(const CStdString& strBaseDir, CFileI bool CVideoDatabase::GetWritersNav(const CStdString& strBaseDir, CFileItemList& items, int idContent) { - return GetPeopleNav(strBaseDir, items, "studio", idContent); + return GetPeopleNav(strBaseDir, items, "writer", idContent); } bool CVideoDatabase::GetDirectorsNav(const CStdString& strBaseDir, CFileItemList& items, int idContent)