Skip to content

Commit

Permalink
Merge pull request xbmc#24469 from CrystalP/fix-pr24370
Browse files Browse the repository at this point in the history
[videodb] fix miss in field renaming of PR#24370
  • Loading branch information
ksooo authored Jan 9, 2024
2 parents c79ea68 + 10adea1 commit b5df8d9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions xbmc/video/VideoDatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12332,11 +12332,11 @@ int CVideoDatabase::GetVideoVersionInfo(int idFile,

try
{
m_pDS->query(PrepareSQL("SELECT videoversiontype.name AS name,"
" videoversiontype.id AS id,"
" videoversion.idMedia AS idMedia,"
" videoversion.media_type AS mediaType,"
" videoversion.itemType AS itemType "
m_pDS->query(PrepareSQL("SELECT videoversiontype.name,"
" videoversiontype.id,"
" videoversion.idMedia,"
" videoversion.media_type,"
" videoversion.itemType "
"FROM videoversion"
" JOIN videoversiontype ON "
" videoversiontype.id = videoversion.idType "
Expand Down

0 comments on commit b5df8d9

Please sign in to comment.