some bug fixes
Email processing now correctly processes message body on AttributeError Workflow page now loads correctly - threw Error 500 when user deleted all his FavoriteCharts
This commit is contained in:
@@ -513,7 +513,10 @@ def get_thumbnails(request,id):
|
||||
charts = []
|
||||
|
||||
charts = thumbnails_set(r,id,favorites)
|
||||
if charts[0]['script'] == '':
|
||||
try:
|
||||
if charts[0]['script'] == '':
|
||||
charts = []
|
||||
except IndexError:
|
||||
charts = []
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user