Skip to content

Commit

Permalink
change name and copyright of Cologne Videos
Browse files Browse the repository at this point in the history
  • Loading branch information
nknapp committed Aug 24, 2024
1 parent bb24cf8 commit 71b54d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import type { VideoPack } from "$core/model/VideoPack.ts";

export default {
metadata: {
name: "Aikido-Schule Bodo Rödel",
copyright: "Bodo Rödel",
name: "Aikido Schule Köln",
copyright: "Aikido Schule Köln",
source: "https://www.aikido-schule.de/aikido/filme/",
},
videos: {
Expand Down
4 changes: 2 additions & 2 deletions src/utils/resolveYoutubeLinks.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { BaseTechnique, YoutubeLink, VideoPack, VideoPackMetadata } from "$core/model";

import aikidoKompendium from "@/data/videopacks/aikido-kompendium";
import bodoRoedelVideos from "@/data/videopacks/bodo-roedel";
import aikidoSchuleKoeln from "src/data/videopacks/aikido-schule-koeln";

export interface ResolvedYoutubeLink extends YoutubeLink {
videoPackMetadata: VideoPackMetadata;
Expand All @@ -11,7 +11,7 @@ export function resolveYoutubeLinks(technique: BaseTechnique | null): ResolvedYo
if (technique == null) return [];
return (
resolveYoutubeLinksFromPack(aikidoKompendium, technique) ??
resolveYoutubeLinksFromPack(bodoRoedelVideos, technique) ??
resolveYoutubeLinksFromPack(aikidoSchuleKoeln, technique) ??
[]
);
}
Expand Down

0 comments on commit 71b54d7

Please sign in to comment.