server: fix typo

This commit is contained in:
Bogdan 2023-04-17 03:38:17 +03:00
parent 6e6d44369c
commit e5c9266328
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ namespace Jackett.Common.Services.Interfaces
{ {
public interface IServerService public interface IServerService
{ {
void Initalize(); void Initialize();
void Start(); void Start();
void Stop(); void Stop();
void ReserveUrls(bool doInstall = true); void ReserveUrls(bool doInstall = true);

View File

@ -22,7 +22,7 @@ namespace Jackett.Server
public static void Initialize() public static void Initialize()
{ {
//Load the indexers //Load the indexers
ServerService.Initalize(); ServerService.Initialize();
//Kicks off the update checker //Kicks off the update checker
ServerService.Start(); ServerService.Start();

View File

@ -73,7 +73,7 @@ namespace Jackett.Server.Services
return path; return path;
} }
public void Initalize() public void Initialize()
{ {
try try
{ {