mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
different favicon for debug mode
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using NLog;
|
using NLog;
|
||||||
using NzbDrone.Common.Disk;
|
using NzbDrone.Common.Disk;
|
||||||
@@ -17,7 +18,14 @@ namespace NzbDrone.Api.Frontend.Mappers
|
|||||||
|
|
||||||
public override string Map(string resourceUrl)
|
public override string Map(string resourceUrl)
|
||||||
{
|
{
|
||||||
var path = Path.Combine("Content", "Images", "favicon.ico");
|
var fileName = "favicon.ico";
|
||||||
|
|
||||||
|
if (BuildInfo.IsDebug)
|
||||||
|
{
|
||||||
|
fileName = "favicon-debug.ico";
|
||||||
|
}
|
||||||
|
|
||||||
|
var path = Path.Combine("Content", "Images", fileName);
|
||||||
|
|
||||||
return Path.Combine(_appFolderInfo.StartUpFolder, "UI", path);
|
return Path.Combine(_appFolderInfo.StartUpFolder, "UI", path);
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
Reference in New Issue
Block a user