Skip to content

Commit

Permalink
Logos are back thanks to an ugly hack!
Browse files Browse the repository at this point in the history
  • Loading branch information
aassif committed Nov 21, 2020
1 parent a850e6b commit 98be749
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pvr.freebox/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.freebox"
version="2.0.4"
version="2.0.5"
name="PVR Freebox TV"
provider-name="aassif">
<requires>@ADDON_DEPENDS@</requires>
Expand Down
4 changes: 2 additions & 2 deletions src/Freebox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ bool Freebox::ProcessChannels ()
data.emplace_back (ParseSource (t), ParseQuality (q), freebox_replace_server (u, m_server));
}
}
m_tv_channels.emplace (ChannelId (ch.uuid), Channel (ch.uuid, name, logo, ch.major, ch.minor, data));
m_tv_channels.emplace (ChannelId (ch.uuid), Channel (ch.uuid, name, logo + "|customrequest=GET", ch.major, ch.minor, data));
}
}

Expand Down Expand Up @@ -1015,7 +1015,7 @@ void Freebox::ProcessEvent (const Event & e, EPG_EVENT_STATE state)

m_mutex.Lock ();
bool colors = m_epg_colors;
string picture = ! e.picture.empty () ? URL (e.picture) : "";
string picture = ! e.picture.empty () ? URL (e.picture + "|customrequest=GET") : "";
m_mutex.Unlock ();

string actors = e.GetCastActors ();
Expand Down

0 comments on commit 98be749

Please sign in to comment.