diff --git a/cookbook/helper/recipe_url_import.py b/cookbook/helper/recipe_url_import.py index c14b018d5..3091023ad 100644 --- a/cookbook/helper/recipe_url_import.py +++ b/cookbook/helper/recipe_url_import.py @@ -124,6 +124,11 @@ def get_from_scraper(scrape, request): except Exception: recipe_json['source_url'] = '' + try: + keywords.append(scrape.author()) + except: + pass + try: recipe_json['keywords'] = parse_keywords(list(set(map(str.casefold, keywords))), request.space) except AttributeError: