mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 21:33:15 -07:00
Fix for #978
This commit is contained in:
parent
948097cd6c
commit
2d1ad10b70
4 changed files with 19 additions and 2 deletions
|
@ -111,7 +111,7 @@ namespace Ombi.Core
|
|||
if (!string.IsNullOrEmpty(result.Error?.message))
|
||||
{
|
||||
Log.Error(result.Error.message);
|
||||
return new MovieSenderResult { Result = false };
|
||||
return new MovieSenderResult { Result = false, Error = true};
|
||||
}
|
||||
if (!string.IsNullOrEmpty(result.title))
|
||||
{
|
||||
|
|
|
@ -36,5 +36,7 @@ namespace Ombi.Core
|
|||
/// <c>true</c> if [movie sending enabled]; otherwise, <c>false</c>.
|
||||
/// </value>
|
||||
public bool MovieSendingEnabled { get; set; }
|
||||
|
||||
public bool Error { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue