Skip to content

Commit

Permalink
change player url
Browse files Browse the repository at this point in the history
  • Loading branch information
miyaoka committed Oct 11, 2024
1 parent f0db47f commit f8eabd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/menu/FooterMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { useFocusStore } from "@/store/focusStore";
const focusStore = useFocusStore();
const eventListStore = useEventListStore();
const multiplayerUrl = "https://multi-player.vercel.app/";
const multiviewPlayerUrl = "https://multiview-player.vercel.app/";
function openInMultiPlayer() {
const idList = Array.from(focusStore.multiSelectEventIdSet);
Expand All @@ -25,7 +25,7 @@ function openInMultiPlayer() {
return videoId ?? [];
});
const url = new URL(multiplayerUrl);
const url = new URL(multiviewPlayerUrl);
url.search = new URLSearchParams(vidList.map((vid) => ["v", vid])).toString();
window.open(url.href, "_blank");
}
Expand Down

0 comments on commit f8eabd8

Please sign in to comment.