Skip to content

Commit

Permalink
Show username in download history
Browse files Browse the repository at this point in the history
See #932
  • Loading branch information
theotherp committed Apr 6, 2024
1 parent bf87495 commit f1ffc23
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
4 changes: 3 additions & 1 deletion core/src/main/resources/changelog.yaml
@@ -1,8 +1,10 @@
#@formatter:off
- version: "v6.0.1"
- version: "v6.1.0"
changes:
- type: "fix"
text: "Exit codes < 0 are now correctly handled in the python wrapper."
- type: "fix"
text: "Show username in download history. See #932"
- type: "note"
text: "The linux binary nzbhydra2 is now deprecated. Please switch to directly running nzbhydra2wrapperPy3.py. "
- version: "v6.0.0"
Expand Down
3 changes: 1 addition & 2 deletions core/src/main/resources/static/js/nzbhydra.js
Expand Up @@ -13035,7 +13035,7 @@ function DownloadHistoryController($scope, StatsService, downloads, ConfigServic
};
var anyUsername = false;
var anyIp = false;
for (var download in $scope.nzbDownloads) {
for (var download of $scope.nzbDownloads) {
if (download.username) {
anyUsername = true;
}
Expand All @@ -13059,7 +13059,6 @@ function DownloadHistoryController($scope, StatsService, downloads, ConfigServic
$scope.columnSizes.title += 10;
}


$scope.update = function () {
StatsService.getDownloadHistory($scope.pagination.current, $scope.limit, $scope.filterModel, sortModel).then(function (downloads) {
$scope.nzbDownloads = downloads.nzbDownloads;
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/resources/static/js/nzbhydra.js.map

Large diffs are not rendered by default.

0 comments on commit f1ffc23

Please sign in to comment.