diff options
author | gdkchan <gab.dark.100@gmail.com> | 2023-03-21 20:14:46 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-21 20:14:46 -0300 |
commit | ba95ee54abf4905d38f3563881a1643f102993b3 (patch) | |
tree | 4a17ec5f209e64e4944b7deceec5dbdf1e0d9dc3 /Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs | |
parent | 4ce4299ca2a6b11332f2341c69f40efd7205282f (diff) |
Revert "Use source generated json serializers in order to improve code trimming (#4094)" (#4576)1.1.675
This reverts commit 4ce4299ca2a6b11332f2341c69f40efd7205282f.
Diffstat (limited to 'Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs')
-rw-r--r-- | Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs b/Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs index 9b5422ad..872c1a37 100644 --- a/Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs +++ b/Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs @@ -122,7 +122,7 @@ namespace Ryujinx.Ava.UI.ViewModels { string patreonJsonString = await httpClient.GetStringAsync("https://patreon.ryujinx.org/"); - Supporters = string.Join(", ", JsonHelper.Deserialize(patreonJsonString, CommonJsonContext.Default.StringArray) + "\n\n"); + Supporters = string.Join(", ", JsonHelper.Deserialize<string[]>(patreonJsonString)) + "\n\n"; } catch { |