Skip to content

Commit

Permalink
fix: seeds and peers shows same value (#1632)
Browse files Browse the repository at this point in the history
  • Loading branch information
Larsluph authored Apr 7, 2024
1 parent 6874944 commit bd09a8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants/vuetorrent/DashboardDefaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export const propsMetadata: PropertyMetadata = {
type: DashboardPropertyType.DURATION
},
[DashboardProperty.SEEDS]: {
props: { titleKey: 'torrent.properties.seeds', value: t => t.num_seeds, total: t => t.available_peers },
props: { titleKey: 'torrent.properties.seeds', value: t => t.num_seeds, total: t => t.available_seeds },
type: DashboardPropertyType.AMOUNT
},
[DashboardProperty.SEEN_COMPLETE]: {
Expand Down

0 comments on commit bd09a8a

Please sign in to comment.