From af47c3630666d2365b24be0859bce83adf30ed21 Mon Sep 17 00:00:00 2001 From: Visne <39844191+Visne@users.noreply.github.com> Date: Wed, 19 Jul 2023 21:01:00 +0200 Subject: [PATCH] Only display news posts in news tab (#99) --- SS14.Launcher/ViewModels/MainWindowTabs/NewsTabViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SS14.Launcher/ViewModels/MainWindowTabs/NewsTabViewModel.cs b/SS14.Launcher/ViewModels/MainWindowTabs/NewsTabViewModel.cs index 2080f9eb..8f16d6c5 100644 --- a/SS14.Launcher/ViewModels/MainWindowTabs/NewsTabViewModel.cs +++ b/SS14.Launcher/ViewModels/MainWindowTabs/NewsTabViewModel.cs @@ -8,7 +8,7 @@ namespace SS14.Launcher.ViewModels.MainWindowTabs; public class NewsTabViewModel : MainWindowTabViewModel { - private const string FeedUrl = "https://spacestation14.io/index.xml"; + private const string FeedUrl = "https://spacestation14.io/post/index.xml"; private bool _startedPullingNews; private bool _newsPulled; @@ -57,4 +57,4 @@ private async void PullNews() public ObservableCollection NewsEntries { get; } public override string Name => "News"; -} \ No newline at end of file +}