1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Don't lower-case document title

This commit is contained in:
Mark McDowall 2014-11-14 14:14:38 -08:00
parent 8c88527f15
commit ba38160430

View File

@ -18,7 +18,7 @@ define(
},
setTitle: function (title) {
title = title.toLocaleLowerCase();
title = title;
if (title === 'Sonarr') {
document.title = 'Sonarr';
}