Skip to content
This repository has been archived by the owner on Apr 16, 2019. It is now read-only.

Commit

Permalink
Merge pull request #16 from jaduncan/master
Browse files Browse the repository at this point in the history
Made the file size limit sane.
  • Loading branch information
EnigmaCurry committed Nov 6, 2013
2 parents ca65705 + 7b7771d commit 84de8df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gmusicfs/gmusicfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def getattr(self, path, fh=None):
track = album.get_track(parts['track'])
st = {
'st_mode' : (S_IFREG | 0444),
'st_size' : track.get('bytes', 20000000),
'st_size' : track.get('bytes', 2000000000),
'st_ctime' : track['creationDate'] / 1000000,
'st_mtime' : track['creationDate'] / 1000000,
'st_atime' : track['lastPlayed'] / 1000000}
Expand Down

0 comments on commit 84de8df

Please sign in to comment.