Ensure compatibility of the new version with old database format (ACF value structure)
This commit is contained in:
@@ -46,7 +46,7 @@ class ACFValue:
|
|||||||
entries = []
|
entries = []
|
||||||
for entry in series:
|
for entry in series:
|
||||||
entries.append([
|
entries.append([
|
||||||
cls(value.strip()) for value in entry.split(Constants.FIELD_SEPARATOR)
|
cls(value.rstrip('ms').strip()) for value in entry.split(Constants.FIELD_SEPARATOR)
|
||||||
])
|
])
|
||||||
return entries
|
return entries
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user