mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 06:48:35 +01:00
removed extra regex
This commit is contained in:
@@ -153,7 +153,7 @@ namespace MediaBrowser.Controller.Providers
|
|||||||
var match = Regex.Match(overview, cdataRegex);
|
var match = Regex.Match(overview, cdataRegex);
|
||||||
overview = match.Groups["text"].Value;
|
overview = match.Groups["text"].Value;
|
||||||
}
|
}
|
||||||
item.Overview = Regex.Replace(overview, @"\<[^\>]*\>", string.Empty);
|
item.Overview = overview;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "TagLine":
|
case "TagLine":
|
||||||
|
|||||||
Reference in New Issue
Block a user