[mythtv] Missing parameters in filldata.cpp / mythfilldatabase,

Laurent ARNAL laurent at clae.net
Wed Dec 7 10:49:11 EST 2005


	Hi,


Using the last svn code, when I run the mythfilldatabase software, using 
  a clean fresh database, the xmltvid column stay empty.

I trace the source to the call ChannelUtil::CreateChannel in  function 
handleChannel.
Adding the (*i).xmltvid as last parameter of this call resolve the issue.


	Laurent.





Index: filldata.cpp
===================================================================
--- filldata.cpp        (revision 8153)
+++ filldata.cpp        (working copy)
@@ -2194,7 +2194,7 @@
                          0 /*service id*/, major,     minor,
                          false /*use on air guide*/,  false /*hidden*/,
                          false /*hidden in guide*/,
-                        freqid,      localfile, (*i).tvformat);
+                        freqid,      localfile, (*i).tvformat, 
(*i).xmltvid);
                  }
              }
          }


More information about the mythtv-dev mailing list