diff --git a/src/components/services/widgets/service/tautulli.jsx b/src/components/services/widgets/service/tautulli.jsx
index a9e9f61f..8ca6b01b 100644
--- a/src/components/services/widgets/service/tautulli.jsx
+++ b/src/components/services/widgets/service/tautulli.jsx
@@ -2,7 +2,7 @@
import useSWR from "swr";
import { useTranslation } from "react-i18next";
import { BsFillPlayFill, BsPauseFill, BsCpu, BsFillCpuFill } from "react-icons/bs";
-import { MdOutlineSmartDisplay } from "react-icons/md";
+import { MdOutlineSmartDisplay, MdSmartDisplay } from "react-icons/md";
import Widget from "../widget";
@@ -37,9 +37,16 @@ function SingleSessionEntry({ session }) {
{full_title}
+ {video_decision === "direct play" && audio_decision === "direct play" && (
+
+ )}
{video_decision === "copy" && audio_decision === "copy" && }
- {video_decision !== "copy" && audio_decision !== "copy" && }
- {video_decision === "copy" && audio_decision !== "copy" && }
+ {video_decision !== "copy" &&
+ video_decision !== "direct play" &&
+ (audio_decision !== "copy" || audio_decision !== "direct play") && }
+ {(video_decision === "copy" || video_decision === "direct play") &&
+ audio_decision !== "copy" &&
+ audio_decision !== "direct play" && }
@@ -92,9 +99,16 @@ function SessionEntry({ session }) {
{full_title}
+ {video_decision === "direct play" && audio_decision === "direct play" && (
+
+ )}
{video_decision === "copy" && audio_decision === "copy" && }
- {video_decision !== "copy" && audio_decision !== "copy" && }
- {video_decision === "copy" && audio_decision !== "copy" && }
+ {video_decision !== "copy" &&
+ video_decision !== "direct play" &&
+ (audio_decision !== "copy" || audio_decision !== "direct play") && }
+ {(video_decision === "copy" || video_decision === "direct play") &&
+ audio_decision !== "copy" &&
+ audio_decision !== "direct play" && }
{millisecondsToString(view_offset)}