fix(video): playback
Some checks are pending
Push & Release 🌍 / Automation 🎛️ (push) Waiting to run
Push & Release 🌍 / ${{ github.event_name == 'push' && 'Unstable 🚀⚠️' || 'Stable 🏷️✅' }} (push) Waiting to run
Push & Release 🌍 / GitHub CodeQL 🔬 (push) Waiting to run
Push & Release 🌍 / Deploy 🚀 (push) Blocked by required conditions

Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
This commit is contained in:
Fernando Fernández 2025-01-12 23:31:54 +01:00
parent 07f8066796
commit 03d890b627
No known key found for this signature in database
GPG Key ID: 82FD36644F1F4D3B

View File

@ -278,7 +278,7 @@ class PlaybackManagerStore extends CommonStore<PlaybackManagerState> {
*/
public readonly currentlyPlayingType = computed(() =>
apiStore.getItemById(this.currentItemId.value)
?.Type
?.MediaType
);
public readonly isVideo = computed(() => this.currentlyPlayingType.value === 'Video');