]> git.localhorst.tv Git - alttp.git/commitdiff
change multilink to multistre.am
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 29 Sep 2023 18:54:13 +0000 (20:54 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 29 Sep 2023 18:54:13 +0000 (20:54 +0200)
resources/js/components/episodes/MultiLink.js

index b66d2feff68c3e31ac5a95a797eb221e1d492cf9..2f737dd0c087d264d1d0294ba7e5dc4bcd4b892e 100644 (file)
@@ -8,7 +8,7 @@ import { getStreamLink } from '../../helpers/Crew';
 const MultiLink = ({ players }) => {
        const streams = players.map(getStreamLink);
        const names = streams.map(s => s.split('/').pop());
-       const url = `https://multitwitch.tv/${names.join('/')}`;
+       const url = `https://multistre.am/${names.join('/')}`;
 
        return <div className="episode-channel">
                <Button
@@ -19,7 +19,7 @@ const MultiLink = ({ players }) => {
                        variant="outline-twitch"
                >
                        <Icon.STREAM />
-                       {' MultiTwitch'}
+                       {' MultiStream'}
                </Button>
        </div>;
 };