Changeset 1907
- Timestamp:
- 22/11/08 11:40:16 (7 weeks ago)
- svm:headrev:
cc3e1ea1-1e01-0410-8d68-8b121e83a9d5:11189- Location:
- freevo
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
src/util/videothumb.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
freevo/ChangeLog
r1905 r1907 45 45 * Fixed RTVE video plug-in for changes to the web page (B#2196882) 46 46 * Fixed tv recordings_manager crashing when deleting a recording (B#2138835) 47 * Fixed video item having broken synlinks (B#2323234) 47 48 * Fixed wiimote not detecting when the remote has been switched off (B#2037944) 48 49 -
freevo/src/util/videothumb.py
r1535 r1907 49 49 import gui.PopupBox 50 50 import osd 51 52 # skip broken symlinks 53 if os.path.islink(videofile) and not os.path.exists(videofile): 54 return 51 55 52 56 if not imagefile:
