Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#10290 closed Bug Report - General (fixed)

mythmetadatalookup fails for show "Are you there, Chelsea?"

Reported by: doug@… Owned by: robertm
Priority: minor Milestone: 0.25
Component: MythTV - Mythmetadatalookup Version: Master Head
Severity: medium Keywords:
Cc: Ticket locked: no

Description

Hi,

Myth correctly identifies the show as having inetref "248813", however when it populates the recordedartwork table the records are malformed. Instead of pointing to files like "/The Larry Sanders Show Season 4_coverart.jpg", they all just say "Are You There, Chelsea". Here's an example:

mysql> select * from recordedartwork where inetref = 248813;
+---------+--------+-----------+------------------------+------------------------+------------------------+
| inetref | season | host      | coverart               | fanart                 | banner                 |
+---------+--------+-----------+------------------------+------------------------+------------------------+
| 248813  |      1 | freshertv | Are You There, Chelsea | Are You There, Chelsea | Are You There, Chelsea |
+---------+--------+-----------+------------------------+------------------------+------------------------+

Here's what I would expect:

mysql> select * from recordedartwork where inetref = 73007;
+---------+--------+-----------+-----------------------------------------------+---------------------------------------------+---------------------------------------------+
| inetref | season | host      | coverart                                      | fanart                                      | banner                                      |
+---------+--------+-----------+-----------------------------------------------+---------------------------------------------+---------------------------------------------+
| 73007   |      4 | freshertv | /The Larry Sanders Show Season 4_coverart.jpg | /The Larry Sanders Show Season 4_fanart.jpg | /The Larry Sanders Show Season 4_banner.jpg |

Presumably it's getting tripped up by the "?".

Thanks!
Doug

Attachments (1)

artwork.diff (727 bytes) - added by doug@… 13 years ago.
Patch for this issue

Download all attachments as: .zip

Change History (3)

comment:1 Changed 13 years ago by Github

Milestone: unknown0.25
Resolution: fixed
Status: newclosed

Remove ? and * from title before calculating download filename.

Fixes #10290.

Branch: master Changeset: 9b3c4c3f2821978e9e0289299bac885454271ecf

Changed 13 years ago by doug@…

Attachment: artwork.diff added

Patch for this issue

comment:2 Changed 13 years ago by doug@…

Whoops - looks like you fixed it before I submitted my patch :-)

Note: See TracTickets for help on using tickets.