From eaeb9705fccbec00334fe5c5b90832868188025d Mon Sep 17 00:00:00 2001 From: VALERIY SINEVICH <33551334+or2e@users.noreply.github.com> Date: Mon, 9 Oct 2023 03:32:04 +0300 Subject: [PATCH] ui: change patch notes target (#79) * ui: change patch notes target * soc link --- src/Application/Common/Services/IPatchNotesService.cs | 2 +- src/WebUI/src/components/app/PatchNotes.vue | 2 +- src/WebUI/src/components/app/Socials.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Application/Common/Services/IPatchNotesService.cs b/src/Application/Common/Services/IPatchNotesService.cs index 5ee61b409..ab65a30cb 100644 --- a/src/Application/Common/Services/IPatchNotesService.cs +++ b/src/Application/Common/Services/IPatchNotesService.cs @@ -57,7 +57,7 @@ public async Task> GetPatchNotesAsync(CancellationToken cancel IList? patchNotes; try { - var res = await _githubHttpClient.GetFromJsonAsync("repos/verdie-g/crpg/releases", + var res = await _githubHttpClient.GetFromJsonAsync("repos/namidaka/crpg/releases", cancellationToken); patchNotes = res! .Select(r => new PatchNotes(r.Id.ToString(), r.Name, r.HtmlUrl, r.PublishedAt)) diff --git a/src/WebUI/src/components/app/PatchNotes.vue b/src/WebUI/src/components/app/PatchNotes.vue index a7b2d5a38..b4041510e 100644 --- a/src/WebUI/src/components/app/PatchNotes.vue +++ b/src/WebUI/src/components/app/PatchNotes.vue @@ -29,7 +29,7 @@ const timeAgo = useLocaleTimeAgo(new Date(latestPatch.value.createdAt));