Changed extenstion to *.*

This commit is contained in:
phill-ridout 2013-03-14 22:16:36 +00:00
parent 633bbc02cf
commit 1ac1619b85
1 changed files with 2 additions and 2 deletions

View File

@ -81,8 +81,8 @@ class PhononPlayer(MediaPlayer):
except UnicodeDecodeError:
log.exception(u'UnicodeDecodeError when trying to read mime types.'
'Setting extensions to all files')
self.audio_extensions_list = [u'*']
self.video_extensions_list = [u'*']
self.audio_extensions_list = [u'*.*']
self.video_extensions_list = [u'*.*']
def _addToList(self, list, mimetype):
# Add all extensions which mimetypes provides us for supported types.