a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[backend/web] Directly return VersionResponse

authored by

Lilian and committed by
Laura Hausmann
a5f8583d dc12aa09

+3 -3
+3 -3
Iceshrimp.Backend/Controllers/Web/VersionController.cs
··· 18 18 { 19 19 [HttpGet] 20 20 [ProducesResults(HttpStatusCode.OK)] 21 - public Task<VersionResponse> GetVersion() 21 + public VersionResponse GetVersion() 22 22 { 23 23 var version = VersionHelpers.VersionInfo.Value; 24 - return Task.FromResult(new VersionResponse 24 + return new VersionResponse 25 25 { 26 26 Codename = version.Codename, 27 27 CommitHash = version.CommitHash, 28 28 Edition = version.Edition, 29 29 Version = version.Version, 30 30 RawVersion = version.RawVersion 31 - }); 31 + }; 32 32 } 33 33 }