Skip to content

Commit

Permalink
fix: trakt trending/popular fetch count always showing default value (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
davidemarcoli authored Sep 12, 2024
1 parent d5c9481 commit 76866ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/forms/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -497,8 +497,8 @@ export function contentSettingsToPass(data: any) {
trakt_collection: data.data.content.trakt?.collection,
trakt_fetch_trending: data.data.content.trakt?.fetch_trending,
trakt_fetch_popular: data.data.content.trakt?.fetch_popular,
trakt_trending_count: data.data.content.trakt?.fetch_trending_count,
trakt_popular_count: data.data.content.trakt?.fetch_popular_count
trakt_trending_count: data.data.content.trakt?.trending_count,
trakt_popular_count: data.data.content.trakt?.popular_count
};
}

Expand Down

0 comments on commit 76866ba

Please sign in to comment.