From 7a8a9a47c6a7f442f393fc0ab52175db60ab5e66 Mon Sep 17 00:00:00 2001 From: Bobby <30593201+luciferreeves@users.noreply.github.com> Date: Fri, 16 Jan 2026 12:03:21 +0530 Subject: Rename streaming source type from "M3U8" to "HLS" for clarity in GetEpisodeLinks function --- utils/api/streaming/streaming.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/api') diff --git a/utils/api/streaming/streaming.go b/utils/api/streaming/streaming.go index cf55a70..570a744 100644 --- a/utils/api/streaming/streaming.go +++ b/utils/api/streaming/streaming.go @@ -420,7 +420,7 @@ func (c *AllAnimeClient) GetEpisodeLinks(showID, episode, mode string) ([]AnimeS if sourceInfo.Type == "direct" { // Transform type to M3U8 or MP4 based on URL if strings.HasSuffix(sourceInfo.URL, ".m3u8") { - sourceInfo.Type = "M3U8" + sourceInfo.Type = "HLS" } else { sourceInfo.Type = "MP4" } -- cgit v1.2.3