mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
Merge pull request #3261 from beetbox/nullpadeverything
Use NullPaddedInt for all r128_album_gain fields.
This commit is contained in:
commit
9ddf02877f
1 changed files with 1 additions and 1 deletions
|
|
@ -935,7 +935,7 @@ class Album(LibModel):
|
|||
'releasegroupdisambig': types.STRING,
|
||||
'rg_album_gain': types.NULL_FLOAT,
|
||||
'rg_album_peak': types.NULL_FLOAT,
|
||||
'r128_album_gain': types.PaddedInt(6),
|
||||
'r128_album_gain': types.NullPaddedInt(6),
|
||||
'original_year': types.PaddedInt(4),
|
||||
'original_month': types.PaddedInt(2),
|
||||
'original_day': types.PaddedInt(2),
|
||||
|
|
|
|||
Loading…
Reference in a new issue