fix: create all filters

This commit is contained in:
Snowflake107 2021-06-20 00:30:17 +05:45
parent bcf410aef2
commit 644adb9202

View file

@ -78,7 +78,7 @@ const FilterList = {
},
toString() {
return `${Object.values(this).join(",")}`;
return this.names.map(m => (this as any)[m]).join(",");
},
create(filter?: FiltersName[]): string {