Skip to content

Commit

Permalink
Channel Icons in Storage Groups
Browse files Browse the repository at this point in the history
Make PixmapChannel::CacheChannelIcon() look in the 'ChannelIcons'
virtual Storage Group on the MBE rather than in the 'Default'
Storage Group for channel icons.  If for some reason, users have
channel icons in their Default Storage Group, then they should
continue to work correctly because the Storage Group code does
a hunt of other Storage Groups if it can't find the file in the
given group.
  • Loading branch information
cpinkham committed Apr 14, 2011
1 parent 7255d46 commit caee2ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/dbchannelinfo.cpp
Expand Up @@ -103,7 +103,7 @@ bool PixmapChannel::CacheChannelIcon(void)
return true;

// Get address of master backed
QString url = gCoreContext->GetMasterHostPrefix();
QString url = gCoreContext->GetMasterHostPrefix("ChannelIcons");
if (url.length() < 1)
{
icon.clear();
Expand Down

0 comments on commit caee2ba

Please sign in to comment.