mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Processed comments.
This commit is contained in:
parent
ab154d924e
commit
c6e33bc463
@ -80,9 +80,9 @@ private IEnumerable<DownloadClientItem> GetQueue()
|
||||
{
|
||||
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…
Reference in New Issue
Block a user