Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/ee66cd66e966d84db636842b631fb861d2e4c968
You should set ROOT_URL correctly, otherwise the web may not work correctly.
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 ] ;