1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

some formatting

This commit is contained in:
Mark McDowall
2014-05-12 17:35:32 -07:00
parent 2fdb0513e8
commit a2095f6f29
2 changed files with 10 additions and 10 deletions
+2 -1
View File
@@ -4,7 +4,8 @@ String.prototype.format = function () {
return this.replace(/{(\d+)}/g, function (match, number) {
if (typeof args[number] !== 'undefined') {
return args[number];
} else {
}
else {
return match;
}
});