mirror of
https://github.com/sbondCo/Watcharr.git
synced 2026-08-07 07:14:44 +00:00
(fix) ProvidersList: Duplicate key error.
This commit is contained in:
@@ -2,6 +2,10 @@
|
||||
|
||||
These changes are awaiting release:
|
||||
|
||||
## Fixed
|
||||
|
||||
- ProvidersList: Duplicate key error.
|
||||
|
||||
# [4.2.0] - 2026-08-03T07:45:00Z
|
||||
|
||||
> [!NOTE]
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
{#if providers?.length > 0}
|
||||
<div class="streaming-providers">
|
||||
{#each providers as provider (provider.name)}
|
||||
{#each providers as provider (provider)}
|
||||
<ProviderIcon i={provider.name} href={provider.link} wh={40} />
|
||||
{/each}
|
||||
{#if fullListLink}
|
||||
|
||||
+7
-1
@@ -368,9 +368,15 @@ export interface MediaGenre {
|
||||
name: string;
|
||||
}
|
||||
|
||||
export enum MediaProviderType {
|
||||
Sub = "sub",
|
||||
Free = "free",
|
||||
}
|
||||
|
||||
export interface MediaProvider {
|
||||
name: string;
|
||||
link: string;
|
||||
type?: MediaProviderType;
|
||||
link?: string;
|
||||
}
|
||||
|
||||
export enum MediaVideoType {
|
||||
|
||||
Reference in New Issue
Block a user