mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:45:26 +03:00
better caching of remote data
This commit is contained in:
@@ -78,12 +78,6 @@ namespace MediaBrowser.Api.System
|
||||
public string Name { get; set; }
|
||||
}
|
||||
|
||||
[Route("/System/SupporterInfo", "GET")]
|
||||
[Authenticated]
|
||||
public class GetSupporterInfo : IReturn<SupporterInfo>
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Class SystemInfoService
|
||||
/// </summary>
|
||||
@@ -116,13 +110,6 @@ namespace MediaBrowser.Api.System
|
||||
_security = security;
|
||||
}
|
||||
|
||||
public async Task<object> Get(GetSupporterInfo request)
|
||||
{
|
||||
var result = await _security.GetSupporterInfo().ConfigureAwait(false);
|
||||
|
||||
return ToOptimizedResult(result);
|
||||
}
|
||||
|
||||
public object Post(PingSystem request)
|
||||
{
|
||||
return _appHost.Name;
|
||||
|
||||
Reference in New Issue
Block a user