mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
Write out the actual file version
This commit is contained in:
parent
9165f3f31e
commit
a8865708ac
2 changed files with 2 additions and 2 deletions
|
@ -243,7 +243,7 @@ namespace PlexRequests.Core.Migration.Migrations
|
|||
{
|
||||
return;
|
||||
}
|
||||
var requestedModels = allRequests as RequestedModel[] ?? allRequests.ToArray();
|
||||
var requestedModels = allRequests.ToList();
|
||||
foreach (var req in requestedModels)
|
||||
{
|
||||
if (req.PosterPath.Contains("https://image.tmdb.org/t/p/w150/"))
|
||||
|
|
|
@ -128,7 +128,7 @@ namespace PlexRequests.UI
|
|||
|
||||
private static void WriteOutVersion()
|
||||
{
|
||||
var assemblyVer = AssemblyHelper.GetProductVersion();
|
||||
var assemblyVer = AssemblyHelper.GetFileVersion();
|
||||
Log.Info($"Version: {assemblyVer}");
|
||||
Console.WriteLine($"Version: {assemblyVer}");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue