Skip to content

Commit

Permalink
Fix torrent list navigation title
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-128 committed Jan 25, 2025
1 parent eb0f011 commit 9ad7359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qBitControl/Views/TorrentViews/TorrentListView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ struct TorrentListView: View {
}

TorrentListHelperView(viewModel: torrentListHelperViewModel)
.navigationTitle(torrentListHelperViewModel.category == "None" ? NSLocalizedString("Tasks", comment: "Tasks") : torrentListHelperViewModel.category.capitalized)
.navigationTitle(torrentListHelperViewModel.category == "All" ? NSLocalizedString("Tasks", comment: "Tasks") : torrentListHelperViewModel.category.capitalized)
}
.toolbar() {
TorrentListToolbar(torrents: $torrentListHelperViewModel.torrents, category: $torrentListHelperViewModel.category, isSelectionMode: $torrentListHelperViewModel.isSelectionMode, isFilterView: $isFilterView, selectedTorrents: $torrentListHelperViewModel.selectedTorrents)
Expand Down

0 comments on commit 9ad7359

Please sign in to comment.