Skip to content

Commit b69b0fd

Browse files
authored
Merge pull request #97 from matijakljajic/Pharo13
fix: LGitBlob contents
2 parents bb1dec4 + ca3843c commit b69b0fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibGit-Core.package/LGitBlob.class/instance/contents.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ contents
33

44
^ self isBinary
55
ifTrue: [ self binaryContents ]
6-
ifFalse: [ self rawBuffer utf8StringFromCString ]
6+
ifFalse: [ (self rawBuffer copyFrom: 1 to: self rawSize) utf8Decoded ]

0 commit comments

Comments
 (0)