Fixed: Add space in confirmation message (#2101)

This commit is contained in:
Adam Dangoor 2017-09-20 06:55:44 +01:00 committed by Leonardo Galli
parent 2b2a1265ad
commit 645a3dca64
1 changed files with 2 additions and 2 deletions

View File

@ -229,11 +229,11 @@ module.exports = Marionette.Layout.extend({
},
_searchMissing : function() {
if (window.confirm('Are you sure you want to search for {0} filtered missing movies?'.format(this.collection.state.totalRecords) +
if (window.confirm('Are you sure you want to search for {0} filtered missing movies? '.format(this.collection.state.totalRecords) +
'One API request to each indexer will be used for each movie. ' + 'This cannot be stopped once started.')) {
CommandController.Execute('cutOffUnmetMoviesSearch', { name : 'cutOffUnmetMoviesSearch',
filterKey : this.collection.state.filterKey,
filterValue : this.collection.state.filterValue });
}
},
});
});