Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitaee96c9

Browse files
authored
fix: set fileSize to full length instead of unread portion (#18409)
`content.Len()` would return `0` bytes after a file was fully read.Since the buffer `Len` function returns the length of the unreadportion.
1 parent7fa1ad8 commitaee96c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎coderd/files/cache.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func NewFromStore(store database.Store, registerer prometheus.Registerer, authz
3535
returnCacheEntryValue{
3636
Object:file.RBACObject(),
3737
FS:archivefs.FromTarReader(content),
38-
Size:int64(content.Len()),
38+
Size:int64(len(file.Data)),
3939
},nil
4040
}
4141

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp