aboutsummaryrefslogtreecommitdiff
path: root/packages/server/src/git/patch.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/server/src/git/patch.ts')
-rw-r--r--packages/server/src/git/patch.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/server/src/git/patch.ts b/packages/server/src/git/patch.ts
index 93ef6fa..126b203 100644
--- a/packages/server/src/git/patch.ts
+++ b/packages/server/src/git/patch.ts
@@ -62,7 +62,7 @@ export class Patch {
}
private async bounds(index: number): Promise<PatchBounds> {
- const raw_patches = await (await this._diff.rawPatches()).split("\n");
+ const raw_patches = (await this._diff.rawPatches()).split("\n");
const patch_header_data = await this._diff.patchHeaderData();
return {
@@ -72,7 +72,7 @@ export class Patch {
}
private async content(index: number): Promise<string> {
- const raw_patches = await (await this._diff.rawPatches()).split("\n");
+ const raw_patches = (await this._diff.rawPatches()).split("\n");
const bounds = await this.bounds(index);
return raw_patches.slice(bounds.start, bounds.end).join("\n");