diff --git a/lib/db/client-strategy-store.js b/lib/db/client-strategy-store.js index 0f59648cfe..d77edff1a4 100644 --- a/lib/db/client-strategy-store.js +++ b/lib/db/client-strategy-store.js @@ -52,10 +52,10 @@ class ClientStrategyStore { getByAppName (appName) { return this.db - .select(COLUMNS) + .select('strategies') .where('app_name', appName) .from(TABLE) - .map(mapRow); + .map((row) => row.strategies); } };