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: | 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)
Change History (3)
comment:1 Changed 13 years ago by
Milestone: | unknown → 0.25 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Remove ? and * from title before calculating download filename.
Fixes #10290.