From 644adb9202e4ac6b5f32f3818658159db53161cc Mon Sep 17 00:00:00 2001 From: Snowflake107 Date: Sun, 20 Jun 2021 00:30:17 +0545 Subject: [PATCH] fix: create all filters --- src/utils/AudioFilters.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/AudioFilters.ts b/src/utils/AudioFilters.ts index 9af7bbb..2da0700 100644 --- a/src/utils/AudioFilters.ts +++ b/src/utils/AudioFilters.ts @@ -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 {