mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-08 14:10:50 -07:00
By default don't use a url base
This commit is contained in:
parent
256cfbc80f
commit
7888912c2d
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ namespace PlexRequests.UI
|
||||||
private static Logger Log = LogManager.GetCurrentClassLogger();
|
private static Logger Log = LogManager.GetCurrentClassLogger();
|
||||||
static void Main(string[] args)
|
static void Main(string[] args)
|
||||||
{
|
{
|
||||||
var baseUrl = "assets";
|
var baseUrl = string.Empty;
|
||||||
var port = -1;
|
var port = -1;
|
||||||
if (args.Length > 0)
|
if (args.Length > 0)
|
||||||
{
|
{
|
||||||
|
@ -140,7 +140,7 @@ namespace PlexRequests.UI
|
||||||
private static int GetStartupPort()
|
private static int GetStartupPort()
|
||||||
{
|
{
|
||||||
Log.Trace("Getting startup Port");
|
Log.Trace("Getting startup Port");
|
||||||
var port = 8080;
|
var port = 3579;
|
||||||
var service = new SettingsServiceV2<PlexRequestSettings>(new SettingsJsonRepository(new DbConfiguration(new SqliteFactory()), new MemoryCacheProvider()));
|
var service = new SettingsServiceV2<PlexRequestSettings>(new SettingsJsonRepository(new DbConfiguration(new SqliteFactory()), new MemoryCacheProvider()));
|
||||||
var settings = service.GetSettings();
|
var settings = service.GetSettings();
|
||||||
Log.Trace("Port: {0}", settings.Port);
|
Log.Trace("Port: {0}", settings.Port);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue