mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
update person editor
This commit is contained in:
parent
2247cd8794
commit
de39408217
@ -102,7 +102,7 @@ namespace MediaBrowser.Api
|
||||
{
|
||||
private readonly IHttpClient _httpClient;
|
||||
private readonly IJsonSerializer _serializer;
|
||||
private const string MbAdminUrl = "http://www.mb3admin.com/admin/";
|
||||
private const string MbAdminUrl = "https://www.mb3admin.com/admin/";
|
||||
private readonly IServerApplicationHost _appHost;
|
||||
|
||||
public PackageReviewService(IHttpClient httpClient, IJsonSerializer serializer, IServerApplicationHost appHost)
|
||||
|
@ -3,11 +3,11 @@ namespace MediaBrowser.Common.Implementations.Security
|
||||
{
|
||||
public class MbAdmin
|
||||
{
|
||||
public const string HttpUrl = "http://www.mb3admin.com/admin/";
|
||||
public const string HttpUrl = "https://www.mb3admin.com/admin/";
|
||||
|
||||
/// <summary>
|
||||
/// Leaving as http for now until we get it squared away
|
||||
/// </summary>
|
||||
public const string HttpsUrl = "http://www.mb3admin.com/admin/";
|
||||
public const string HttpsUrl = "https://www.mb3admin.com/admin/";
|
||||
}
|
||||
}
|
||||
|
@ -21,7 +21,7 @@ namespace MediaBrowser.Common.Implementations.Security
|
||||
public class PluginSecurityManager : ISecurityManager
|
||||
{
|
||||
private const string MBValidateUrl = MbAdmin.HttpsUrl + "service/registration/validate";
|
||||
private const string AppstoreRegUrl = /*MbAdmin.HttpsUrl*/ "http://mb3admin.com/admin/service/appstore/register";
|
||||
private const string AppstoreRegUrl = /*MbAdmin.HttpsUrl*/ "https://mb3admin.com/admin/service/appstore/register";
|
||||
|
||||
/// <summary>
|
||||
/// The _is MB supporter
|
||||
|
@ -18,7 +18,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
|
||||
private readonly IHttpClient _httpClient;
|
||||
private readonly IUserManager _userManager;
|
||||
private readonly ILogger _logger;
|
||||
private const string MbAdminUrl = "http://www.mb3admin.com/admin/";
|
||||
private const string MbAdminUrl = "https://www.mb3admin.com/admin/";
|
||||
|
||||
public UsageReporter(IApplicationHost applicationHost, IHttpClient httpClient, IUserManager userManager, ILogger logger)
|
||||
{
|
||||
|
@ -984,10 +984,6 @@ namespace MediaBrowser.Server.Startup.Common
|
||||
{
|
||||
get
|
||||
{
|
||||
if (!ServerConfigurationManager.Configuration.EnableAutoUpdate)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
#if DEBUG
|
||||
return false;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user