Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:HolodexNet/Musicdex
Browse files Browse the repository at this point in the history
  • Loading branch information
sphinxrave committed Nov 24, 2023
2 parents fc651a7 + 21aac49 commit 3149fc6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions public/locales/hu-HU/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
"Discover Favorites": "Felfedezés kedvencek",
"Favorites Community Playlists": "Kedvenc közösségi lejátszási listák",
"Favorites Playlists": "Kedvenc lejátszási listák",
"Username changed": "Username changed",
"Joined {{created_at}}": "Joined {{created_at}}",
"Username": "Username"
"Username changed": "Felhasználónév megváltoztatva",
"Joined {{created_at}}": "Csatlakozott: {{created_at}}",
"Username": "Felhasználónév"
}
2 changes: 1 addition & 1 deletion src/modules/services/channels.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function useChannelListForOrg(
},
{
getNextPageParam: (lastPage, pages) =>
lastPage.length === 100 ? pages.length + 1 : null,
lastPage.length === 100 ? pages.length : null,
keepPreviousData: true,
retry: 1,
cacheTime: 1000 * 60 * 60 * 5,
Expand Down
4 changes: 2 additions & 2 deletions src/modules/services/discovery.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export function useAllPlaylistDiscoveryForOrg(
{
...options,
getNextPageParam: (lastPage, pages) =>
lastPage.length === 100 ? pages.length + 1 : null,
lastPage.length === 100 ? pages.length : null,
keepPreviousData: options.keepPreviousData ?? true,
retry: options.retry ?? 1,
cacheTime: options.cacheTime ?? 1000 * 60 * 60 * 5,
Expand Down Expand Up @@ -125,7 +125,7 @@ export function useAllPlaylistDiscoveryForFavorites(
...options,
enabled: isLoggedIn && options.enabled,
getNextPageParam: (lastPage, pages) =>
lastPage.length === 100 ? pages.length + 1 : null,
lastPage.length === 100 ? pages.length : null,
keepPreviousData: options.keepPreviousData ?? true,
retry: options.retry ?? 1,
cacheTime: options.cacheTime ?? 1000 * 60 * 60 * 5,
Expand Down

0 comments on commit 3149fc6

Please sign in to comment.