mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-12 08:16: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),
|
Content = ByteConverterHelper.ReturnBytes(request),
|
||||||
PrimaryIdentifier = id,
|
PrimaryIdentifier = id,
|
||||||
FaultType = faultType,
|
FaultType = faultType,
|
||||||
Message = description ?? string.Empty
|
Description = description ?? string.Empty
|
||||||
};
|
};
|
||||||
await RequestQueue.InsertAsync(queue);
|
await RequestQueue.InsertAsync(queue);
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,7 @@ namespace Ombi.Store.Models
|
||||||
|
|
||||||
public FaultType FaultType { get; set; }
|
public FaultType FaultType { get; set; }
|
||||||
public DateTime? LastRetry { get; set; }
|
public DateTime? LastRetry { get; set; }
|
||||||
public string Message { get; set; }
|
public string Description { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum FaultType
|
public enum FaultType
|
||||||
|
|
|
@ -64,7 +64,7 @@ namespace Ombi.UI.Modules.Admin
|
||||||
Id = r.Id,
|
Id = r.Id,
|
||||||
PrimaryIdentifier = r.PrimaryIdentifier,
|
PrimaryIdentifier = r.PrimaryIdentifier,
|
||||||
LastRetry = r.LastRetry,
|
LastRetry = r.LastRetry,
|
||||||
Message = r.Message
|
Message = r.Description
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
return View["RequestFaultQueue", model];
|
return View["RequestFaultQueue", model];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue