Thread: Mythnettv
View Single Post
Old August 13th, 2008   #4
wombo
Just Give Me the Beans!
 
Join Date: Oct 2006
Beans: 53
Re: Mythnettv

Just thought you all might be interested.

I found a bug in the code if you remove a subscription (IE make it inactive) it will continue to download when you run --update.

I had to edit the following on line 492 of mythnettv

From
Code:
for row in db.GetRows('select * from mythnettv_subscriptions'):
To
Code:
for row in db.GetRows('select * from mythnettv_subscriptions where inactive is NULL'):
Thanks
wombo is offline   Reply With Quote