View Single Post
Posts: 958 | Thanked: 3,426 times | Joined on Apr 2012
#55
One of my podcasts stopped showing anything in the library view. I did a bit of digging and found the problem was in python/podcast/podpost.py, line 108:
Code:
self.htmlpart = entry.summary_detail.value
One episode was apparently missing the summary_detail field. Changing this line to
Code:
try:
    self.htmlpart = entry.summary_detail.value
except:
    self.htmlpart = ""
fixed it and my podcasts are back. I would suggest this as a change to be made upstream; I haven't figured out yet how to make an official merge request on gitlab.
 

The Following User Says Thank You to taixzo For This Useful Post: