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);
                 }
             }
         }
_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to