mirror of
https://github.com/beetbox/beets.git
synced 2026-02-12 10:22:13 +01:00
format
This commit is contained in:
parent
723e928d79
commit
e9a77cac72
1 changed files with 1 additions and 1 deletions
|
|
@ -1006,7 +1006,7 @@ class FieldSort(Sort):
|
|||
field_val = obj._types[self.field].null
|
||||
# If not, or the null value is None, fall back to using an empty string.
|
||||
if field_val is None:
|
||||
field_val = ''
|
||||
field_val = ""
|
||||
if self.case_insensitive and isinstance(field_val, str):
|
||||
field_val = field_val.lower()
|
||||
return field_val
|
||||
|
|
|
|||
Loading…
Reference in a new issue