summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuo Jinghua <sunmoon1997@gmail.com>2010-11-16 11:19:06 +0800
committerLuo Jinghua <sunmoon1997@gmail.com>2010-11-16 11:19:06 +0800
commit367800f9cdeab8bd9a9bcb78163d7cec95664f78 (patch)
tree52f8692bad4ad936b1b336335d9becf430480757
parent06aff60aa98b3f7b997213c38c0b6802b28c6b35 (diff)
ppstream: fixed fetching meta data for movies in favourites
-rw-r--r--totem/plugin/ppstream.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/totem/plugin/ppstream.py b/totem/plugin/ppstream.py
index 2e515a9..eb2ff8d 100644
--- a/totem/plugin/ppstream.py
+++ b/totem/plugin/ppstream.py
@@ -737,7 +737,7 @@ class PPStream (totem.Plugin):
if movie.meta_data or not movie.bkid:
return
- if movie.fetching_meta_data:
+ if hasattr(movie, 'fetching_meta_data') and movie.fetching_meta_data:
return
print 'fetching movie meta data:', movie
movie.fetching_meta_data = True