mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 03:19:24 +02:00
Fix #204: missing dot when downloading file
This commit is contained in:
parent
8d2529f4f7
commit
6e168a54ec
4 changed files with 14 additions and 2 deletions
|
@ -467,7 +467,7 @@ class TrackFile(models.Model):
|
|||
|
||||
@property
|
||||
def filename(self):
|
||||
return '{}{}'.format(
|
||||
return '{}.{}'.format(
|
||||
self.track.full_name,
|
||||
self.extension)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue