Opened 19 years ago
Closed 19 years ago
#3143 closed patch (fixed)
imdp.pl plot summary fix
| Reported by: | Owned by: | Anduin Withers | |
|---|---|---|---|
| Priority: | minor | Milestone: | unknown |
| Component: | mythvideo | Version: | 0.20 |
| Severity: | medium | Keywords: | |
| Cc: | Ticket locked: | no |
Description
143 my $plot = parseBetween($response, ">Plot Outline:</h5> ", "</div>"); 144 if (!$plot) { 145 $plot = parseBetween($response, ">Plot Summary:</b> ", "<br>");
change to
143 my $plot = parseBetween($response, ">Plot Outline:</h5> ", "</div>"); 144 if (!$plot) { 145 $plot = parseBetween($response, ">Plot Summary:</h5> ", "</div>");
This fixes the few movies that still have Plot Summary. (e.g. 0120657)
Change History (2)
Note:
See TracTickets
for help on using tickets.

(In [12885]) References #3143
Thanks to ianan for patching another imdb.com format change. (Patch finds Plot Summary)