diff --git a/web/main/models.py b/web/main/models.py index 6cd014a56..589db6fea 100644 --- a/web/main/models.py +++ b/web/main/models.py @@ -1684,7 +1684,7 @@ def get_ali_license_text(self): title = self.title.lower() for item in licensed_materials: - if any(word.lower() in title.split() for word in item["match_words"]): + if any(word.lower() in title for word in item["match_words"]): license_txt = ( f"{item['title']}, copyright @ {item['copyright_year']} by the American Law Institute. " f"Reproduced with permission, not as part of a Creative Commons license."