bug: Fixed missing preparation for filter on autotype

This commit is contained in:
Dennis Ploeger 2019-04-02 14:09:12 +02:00
parent 1ab397be0a
commit fa136af90a
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ const AppModel = Backbone.Model.extend({
},
getEntriesByFilter: function(filter) {
let preparedFilter = this.prepareFilter(filter);
const preparedFilter = this.prepareFilter(filter);
const entries = new EntryCollection();
this.files.forEach(file => {
file.forEachEntry(preparedFilter, entry => entries.push(entry));