Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9d3b206

Browse files
committedApr 23, 2025·
fix: buildin client progress
1 parent 386e5ce commit 9d3b206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pkg/buildin/torrent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ func (t *Torrent) Progress() (int, error) {
139139
if p >= 100 {
140140
p = 99
141141
}
142-
return 99, nil
142+
return p, nil
143143
}
144144

145145
func (t *Torrent) Stop() error {

0 commit comments

Comments
 (0)
Please sign in to comment.