[mythtv-commits] Ticket #9288: Change 24895- the toLower is the wrong place

MythTV mythtv at cvs.mythtv.org
Thu Nov 25 20:34:51 UTC 2010


#9288: Change 24895- the toLower is the wrong place
--------------------------------------+-------------------------------------
     Reporter:  cpw@…                 |       Owner:  beirdo 
         Type:  Bug Report            |      Status:  new    
     Priority:  major                 |   Milestone:  unknown
    Component:  Plugin - MythGallery  |     Version:  0.24   
     Severity:  medium                |    Keywords:         
Ticket locked:  0                     |  
--------------------------------------+-------------------------------------
 Hi
 Myth 0.24 broke mythgallery video playing for me. All my files are
 (unfortunately) in upper case: *.MOV mostly. The Changeset 24895 adding in
 mp4 and cleaning up the upper/lower stuff in the filter does one thing
 slightly wrong. The change does this:


 {{{
         if ((*it).toLower().contains(fi.suffix()))
 }}}

 However, you actually meant to toLower the file suffix, so it matches the
 filter contents:


 {{{
         if ((*it).contains(fi.suffix().toLower()))
 }}}

 I have compiled this change locally and confirm it works.

 Christian

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/9288>
MythTV <http://www.mythtv.org/>
MythTV Media Center


More information about the mythtv-commits mailing list