[READ-ONLY] Mirror of https://github.com/FoxxMD/multi-scrobbler. Scrobble plays from multiple sources to multiple clients docs.multi-scrobbler.app
deezer docker jellyfin koito lastfm listenbrainz maloja mopidy mpris music music-assistant plex scrobble self-hosted spotify subsonic tautulli youtube-music
0

Configure Feed

Select the types of activity you want to include in your feed.

Containerized playinfo

FoxxMD (Mar 18, 2026, 6:19 PM UTC) 82ecd96b e118dc5d

+5 -1
+5 -1
src/client/components/PlayInfo.tsx
··· 1 1 import React, { Fragment, useMemo, useState } from 'react'; 2 - import { EmptyState, DataList, HStack, Tag, Wrap, Box, Flex, SegmentGroup, Stack, Text, Separator, IconButton } from "@chakra-ui/react" 2 + import { EmptyState, DataList, HStack, Tag, Wrap, Box, Flex, SegmentGroup, Stack, Text, Separator, IconButton, Container } from "@chakra-ui/react" 3 3 import { LuCode, LuText } from "react-icons/lu" 4 4 import { JsonPlayObject } from '../../core/Atomic'; 5 5 import { shortTodayAwareFormat } from '../../core/TimeUtils'; ··· 153 153 </Stack> 154 154 </Fragment> 155 155 ) 156 + } 157 + 158 + export const PlayInfoContainer = (props?: PlayInfoProps) => { 159 + return <Container maxWidth="lg"><PlayInfo {...props}/></Container> 156 160 }