mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-27 20:55:12 -05:00
Merge branch 'mealie-next' into fix/translation-issues-when-scraping
This commit is contained in:
@@ -218,7 +218,11 @@ class BaseMigrator(BaseService):
|
||||
continue
|
||||
|
||||
if alias.func:
|
||||
prop_value = alias.func(prop_value)
|
||||
try:
|
||||
prop_value = alias.func(prop_value)
|
||||
except Exception as e:
|
||||
self.logger.exception(e)
|
||||
continue
|
||||
|
||||
recipe_dict[alias.key] = prop_value
|
||||
|
||||
|
||||
Reference in New Issue
Block a user