From 0fda004bbb897455721103af340217685e73638a Mon Sep 17 00:00:00 2001 From: jerrry08 Date: Fri, 26 Jan 2024 08:55:26 -0400 Subject: [PATCH] Update formats --- Yosu/ViewModels/YoutubeViewModel.cs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Yosu/ViewModels/YoutubeViewModel.cs b/Yosu/ViewModels/YoutubeViewModel.cs index 0a3ecd2..a2f2a3a 100644 --- a/Yosu/ViewModels/YoutubeViewModel.cs +++ b/Yosu/ViewModels/YoutubeViewModel.cs @@ -46,13 +46,7 @@ public class YoutubeViewModel public Container SelectedContainer { get; set; } = Container.Mp4; public IReadOnlyList AvailableContainers { get; } = - new[] - { - //Container.Mp4, - //Container.WebM, - Container.Mp3, - new Container("ogg") - }; + new[] { Container.Mp4, Container.WebM, Container.Mp3, new Container("ogg") }; public IReadOnlyList AvailableVideoQualityPreferences { get; } = Enum.GetValues().Reverse().ToArray();