fix: buildin client progress

This commit is contained in:
Simon Ding
2025-04-23 13:45:58 +08:00
parent 386e5ce100
commit 9d3b206762

View File

@@ -139,7 +139,7 @@ func (t *Torrent) Progress() (int, error) {
if p >= 100 {
p = 99
}
return 99, nil
return p, nil
}
func (t *Torrent) Stop() error {