mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 15:56:05 -07:00
Fixed #968
This commit is contained in:
parent
6ed1663693
commit
ee66cd66e9
3 changed files with 3 additions and 3 deletions
|
@ -97,7 +97,7 @@ namespace Ombi.Core.Queue
|
|||
Content = ByteConverterHelper.ReturnBytes(request),
|
||||
PrimaryIdentifier = id,
|
||||
FaultType = faultType,
|
||||
Message = description ?? string.Empty
|
||||
Description = description ?? string.Empty
|
||||
};
|
||||
await RequestQueue.InsertAsync(queue);
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ namespace Ombi.Store.Models
|
|||
|
||||
public FaultType FaultType { get; set; }
|
||||
public DateTime? LastRetry { get; set; }
|
||||
public string Message { get; set; }
|
||||
public string Description { get; set; }
|
||||
}
|
||||
|
||||
public enum FaultType
|
||||
|
|
|
@ -64,7 +64,7 @@ namespace Ombi.UI.Modules.Admin
|
|||
Id = r.Id,
|
||||
PrimaryIdentifier = r.PrimaryIdentifier,
|
||||
LastRetry = r.LastRetry,
|
||||
Message = r.Message
|
||||
Message = r.Description
|
||||
}).ToList();
|
||||
|
||||
return View["RequestFaultQueue", model];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue