Skip to content

Commit

Permalink
Pull request: AG-4181 Custom name for custom filter bug
Browse files Browse the repository at this point in the history
Merge in EXTENSIONS/safari-app-extension from fix/AG-4181 to master

* commit 'e710bd78886cad087402303b4d876918ec4e4d24':
  fixed filters name priority
  • Loading branch information
Oleg Labudko committed Sep 18, 2020
2 parents aa6b021 + e710bd7 commit 0c21d24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ElectronMainApp/src/main/app/filters/custom-filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ module.exports = (function () {

const filterId = addFilterId();
const groupId = CUSTOM_FILTERS_GROUP_ID;
const defaultName = filterData.name || title;
const defaultName = title || filterData.name;
const defaultDescription = filterData.description;
const { homepage, version, expires } = filterData;
const timeUpdated = filterData.timeUpdated || new Date().toString();
Expand Down

0 comments on commit 0c21d24

Please sign in to comment.