Skip to content

Commit

Permalink
fixed broken build, this is just getting sloppy, at least test compil…
Browse files Browse the repository at this point in the history
…e your PRs
  • Loading branch information
davilla committed Apr 9, 2013
1 parent 8448ca7 commit 18b9878
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/network/upnp/UPnPServer.cpp
Expand Up @@ -679,12 +679,12 @@ CUPnPServer::BuildResponse(PLT_ActionReference& action,

if (URIUtils::IsVideoDb(items.GetPath()) ||
StringUtils::StartsWith(items.GetPath(), "library://video") ||
StringUtils::StartsWith(items.GetPath(), "special://profile/playlists/video/") {
StringUtils::StartsWith(items.GetPath(), "special://profile/playlists/video/")) {

thumb_loader = NPT_Reference<CThumbLoader>(new CVideoThumbLoader());
}
else if (URIUtils::IsMusicDb(items.GetPath()) ||
StringUtils::StartsWith(items.GetPath(), "special://profile/playlists/music/") {
StringUtils::StartsWith(items.GetPath(), "special://profile/playlists/music/")) {

thumb_loader = NPT_Reference<CThumbLoader>(new CMusicThumbLoader());
}
Expand Down

0 comments on commit 18b9878

Please sign in to comment.