fix duplicate variable declaration

This commit is contained in:
Tim Taubert 2016-06-29 15:11:03 +02:00
Родитель e3e281457a
Коммит 848c0c3ada
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -40,7 +40,7 @@ function findBugNumber(message) {
return match[1]; return match[1];
} }
let match = /https:\/\/bugzilla\.mozilla\.org\/show_bug\.cgi\?id=(\d{5,})/.exec(message); match = /https:\/\/bugzilla\.mozilla\.org\/show_bug\.cgi\?id=(\d{5,})/.exec(message);
if (match) { if (match) {
return match[1]; return match[1];
} }