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:
|
These changes are awaiting release:
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
|
||||||
|
- ProvidersList: Duplicate key error.
|
||||||
|
|
||||||
# [4.2.0] - 2026-08-03T07:45:00Z
|
# [4.2.0] - 2026-08-03T07:45:00Z
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
{#if providers?.length > 0}
|
{#if providers?.length > 0}
|
||||||
<div class="streaming-providers">
|
<div class="streaming-providers">
|
||||||
{#each providers as provider (provider.name)}
|
{#each providers as provider (provider)}
|
||||||
<ProviderIcon i={provider.name} href={provider.link} wh={40} />
|
<ProviderIcon i={provider.name} href={provider.link} wh={40} />
|
||||||
{/each}
|
{/each}
|
||||||
{#if fullListLink}
|
{#if fullListLink}
|
||||||
|
|||||||
+7
-1
@@ -368,9 +368,15 @@ export interface MediaGenre {
|
|||||||
name: string;
|
name: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export enum MediaProviderType {
|
||||||
|
Sub = "sub",
|
||||||
|
Free = "free",
|
||||||
|
}
|
||||||
|
|
||||||
export interface MediaProvider {
|
export interface MediaProvider {
|
||||||
name: string;
|
name: string;
|
||||||
link: string;
|
type?: MediaProviderType;
|
||||||
|
link?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum MediaVideoType {
|
export enum MediaVideoType {
|
||||||
|
|||||||
Reference in New Issue
Block a user