Unverified Commit 96ea1569 authored by networkException's avatar networkException
Browse files

chromium: match release blog entry titles case-insensitive in `get-commit-message.py`

parent 0bf3a8e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ target_version = sys.argv[1] if len(sys.argv) == 2 else None

for entry in feed.entries:
    url = requests.get(entry.link).url.split('?')[0]
    if entry.title != 'Stable Channel Update for Desktop':
    if entry.title.lower() != 'Stable Channel Update for Desktop'.lower():
        if target_version and entry.title == '':
            # Workaround for a special case (Chrome Releases bug?):
            if not 'the-stable-channel-has-been-updated-to' in url: