summaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/views.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/backend/views.py b/backend/views.py
index 565716a..04d556d 100644
--- a/backend/views.py
+++ b/backend/views.py
@@ -135,6 +135,8 @@ def videos_response_str(videos):
strio = cStringIO.StringIO()
for v in videos:
s = v.settings
+ if s.get('removed', 0):
+ continue
strio.write('VIDEO\t')
strio.write('%s\n' % '\t'.join([
str(v.id),