Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/c6e33bc463db8b970ff0979fc3c4e9b8e1cdeb72?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Processed comments.

pull/80/head
Taloth Saldono 11 years ago
parent ab154d924e
commit c6e33bc463

@ -80,9 +80,9 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
{
var postQueueItem = postQueue.GetValueOrDefault(item.NzbId);
Int64 totalSize = MakeInt64(item.FileSizeHi, item.FileSizeLo);
Int64 pausedSize = MakeInt64(item.PausedSizeHi, item.PausedSizeLo);
Int64 remainingSize = MakeInt64(item.RemainingSizeHi, item.RemainingSizeLo);
var totalSize = MakeInt64(item.FileSizeHi, item.FileSizeLo);
var pausedSize = MakeInt64(item.PausedSizeHi, item.PausedSizeLo);
var remainingSize = MakeInt64(item.RemainingSizeHi, item.RemainingSizeLo);
var droneParameter = item.Parameters.SingleOrDefault(p => p.Name == "drone");

@ -20,7 +20,8 @@ define(
if (timeleft === undefined) {
this.$el.html("-");
} else {
}
else {
this.$el.html(timeleft);
}
this.$el.attr('title', '{0} / {1}'.format(remainingSize, totalSize));

Loading…
Cancel
Save