1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-12-22 17:06:17 +00:00

Small optim

This commit is contained in:
spl0k 2014-03-25 19:11:24 +01:00
parent 8725500ec7
commit 023007bb88

6
db.py
View File

@ -169,7 +169,7 @@ class Track(object):
def as_subsonic_child(self, user): def as_subsonic_child(self, user):
info = { info = {
'id': str(self.id), 'id': str(self.id),
'parent': str(self.folder.id), 'parent': str(self.folder_id),
'isDir': False, 'isDir': False,
'title': self.title, 'title': self.title,
'album': self.album.name, 'album': self.album.name,
@ -184,8 +184,8 @@ class Track(object):
'isVideo': False, 'isVideo': False,
'discNumber': self.disc, 'discNumber': self.disc,
'created': self.created.isoformat(), 'created': self.created.isoformat(),
'albumId': str(self.album.id), 'albumId': str(self.album_id),
'artistId': str(self.album.artist.id), 'artistId': str(self.album.artist_id),
'type': 'music' 'type': 'music'
} }