From a7533bbee076b15064e4ac06c4310be2be326541 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Fri, 16 Aug 2024 18:50:05 +0200 Subject: [PATCH] fix: change profile --- components/music/SongsListItem.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/music/SongsListItem.tsx b/components/music/SongsListItem.tsx index fc150fc4..ce41114f 100644 --- a/components/music/SongsListItem.tsx +++ b/components/music/SongsListItem.tsx @@ -19,12 +19,12 @@ import CastContext, { useCastDevice, useRemoteMediaClient, } from "react-native-google-cast"; -import ios12 from "@/utils/profiles/ios12"; import { currentlyPlayingItemAtom, triggerPlayAtom, } from "../CurrentlyPlayingBar"; import { useActionSheet } from "@expo/react-native-action-sheet"; +import ios from "@/utils/profiles/ios"; interface Props extends TouchableOpacityProps { collectionId: string; @@ -96,7 +96,7 @@ export const SongsListItem: React.FC = ({ item, startTimeTicks: item?.UserData?.PlaybackPositionTicks || 0, sessionData, - deviceProfile: castDevice?.deviceId ? chromecastProfile : ios12, + deviceProfile: castDevice?.deviceId ? chromecastProfile : ios, }); if (!url || !item) return;