xmltv/grab/pt_meo tv_grab_pt_meo,1.11,1.12
Karl Dietz <[email protected]> Tue, 15 Dec 2015 14:40:10 +0000
| Newsgroups | gmane.comp.tv.xmltv.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/xmltv/xmltv/grab/pt_meo
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv14996/grab/pt_meo
Modified Files:
tv_grab_pt_meo
Log Message:
_pt_meo: don't emit errors when we don't get partial results
Index: tv_grab_pt_meo
===================================================================
RCS file: /cvsroot/xmltv/xmltv/grab/pt_meo/tv_grab_pt_meo,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** tv_grab_pt_meo 15 Dec 2015 14:39:02 -0000 1.11
--- tv_grab_pt_meo 15 Dec 2015 14:40:08 -0000 1.12
***************
*** 308,312 ****
my ($newdata) = $partialEpgsource =~ m/(<Channel>.*<\/Channel>)/is;
my ($x, $y) = $$epgref =~ m/^(.*<\/Channel>)(.*)$/is;
! $$epgref = ($x || '') . $newdata . ($y || '');
}
--- 308,312 ----
my ($newdata) = $partialEpgsource =~ m/(<Channel>.*<\/Channel>)/is;
my ($x, $y) = $$epgref =~ m/^(.*<\/Channel>)(.*)$/is;
! $$epgref = ($x || '') . ($newdata || '') . ($y || '');
}
------------------------------------------------------------------------------