Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/769fcdfc80ff9f9a0722e580c503eed7cc854684?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
6 additions and
1 deletions
@ -124,6 +124,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
historyItem . DownloadTime = sabHistoryItem . DownloadTime ;
historyItem . Storage = sabHistoryItem . Storage ;
historyItem . Category = sabHistoryItem . Category ;
historyItem . Message = sabHistoryItem . FailMessage ;
historyItem . Status = sabHistoryItem . Status = = "Failed" ? HistoryStatus . Failed : HistoryStatus . Completed ;
historyItems . Add ( historyItem ) ;
@ -13,5 +13,6 @@ namespace NzbDrone.Core.Download
public String SourceTitle { get ; set ; }
public String DownloadClient { get ; set ; }
public String DownloadClientId { get ; set ; }
public String Message { get ; set ; }
}
}
@ -73,7 +73,8 @@ namespace NzbDrone.Core.Download
Quality = historyItem . Quality ,
SourceTitle = historyItem . SourceTitle ,
DownloadClient = historyItem . Data [ DOWNLOAD_CLIENT ] ,
DownloadClientId = historyItem . Data [ DOWNLOAD_CLIENT_ID ]
DownloadClientId = historyItem . Data [ DOWNLOAD_CLIENT_ID ] ,
Message = failedItem . Message
} ) ;
}
}
@ -11,6 +11,7 @@ namespace NzbDrone.Core.Download
public String Category { get ; set ; }
public Int32 DownloadTime { get ; set ; }
public String Storage { get ; set ; }
public String Message { get ; set ; }
public HistoryStatus Status { get ; set ; }
}
@ -148,6 +148,7 @@ namespace NzbDrone.Core.History
history . Data . Add ( "DownloadClient" , message . DownloadClient ) ;
history . Data . Add ( "DownloadClientId" , message . DownloadClientId ) ;
history . Data . Add ( "Message" , message . Message ) ;
_historyRepository . Insert ( history ) ;
}