fix: dolby vision on supported devices, specifically profile 5 (#660)

This commit is contained in:
lance chant
2025-05-01 12:11:29 +02:00
committed by GitHub
parent 4a816470d1
commit 0b574cc047
10 changed files with 194 additions and 513 deletions

View File

@@ -1,5 +1,5 @@
import type { Settings } from "@/utils/atoms/settings";
import native from "@/utils/profiles/native";
import generateDeviceProfile from "@/utils/profiles/native";
import type { Api } from "@jellyfin/sdk";
import type { AxiosResponse } from "axios";
import { getAuthHeaders } from "../jellyfin";
@@ -43,7 +43,7 @@ export const postCapabilities = async ({
],
supportsMediaControl: true,
id: sessionId,
DeviceProfile: native,
DeviceProfile: generateDeviceProfile(),
},
{
headers: getAuthHeaders(api),