aboutsummaryrefslogtreecommitdiff
path: root/packages/server/src/git/blob.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/server/src/git/blob.ts')
-rw-r--r--packages/server/src/git/blob.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/git/blob.ts b/packages/server/src/git/blob.ts
index 4dadc01..5d1d892 100644
--- a/packages/server/src/git/blob.ts
+++ b/packages/server/src/git/blob.ts
@@ -23,7 +23,7 @@ export class Blob {
* Returns the blob's content
*/
public async content(): Promise<string> {
- return (await this._tree_entry.ng_tree_entry.getBlob()).content.toString();
+ return (await this._tree_entry.ng_tree_entry.getBlob()).content().toString();
}
/**