mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 21:12:43 +02:00
New: After an update the update page will redirect to a success or failure page, depending on the result.
Fix: Notifications will attempt to reconnect to NzbDrone after it is shutdown.
This commit is contained in:
15
NzbDrone.Web/Models/PostUpgradeModel.cs
Normal file
15
NzbDrone.Web/Models/PostUpgradeModel.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
namespace NzbDrone.Web.Models
|
||||
{
|
||||
public class PostUpgradeModel
|
||||
{
|
||||
public Version CurrentVersion { get; set; }
|
||||
public Version ExpectedVersion { get; set; }
|
||||
public bool Success { get; set; }
|
||||
public KeyValuePair<DateTime, string> LogFile { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user