diff options
author | HampusM <hampus@hampusmat.com> | 2021-07-29 17:10:54 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-07-29 17:10:54 +0200 |
commit | 93a4a8bf924588cd866714b86ec8f16f8d51dec0 (patch) | |
tree | a86d3ecba5838fac11042e8ae257dfe1bd3840cb /packages/server/src/git/patch.ts | |
parent | 9d6d2ce8cf34af6e787dae901ee3e5914c4c0fa4 (diff) |
Organized tsconfigs, fixed tests and improved some backend functions
Diffstat (limited to 'packages/server/src/git/patch.ts')
-rw-r--r-- | packages/server/src/git/patch.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/server/src/git/patch.ts b/packages/server/src/git/patch.ts index 45ffe23..4239ce4 100644 --- a/packages/server/src/git/patch.ts +++ b/packages/server/src/git/patch.ts @@ -130,12 +130,12 @@ export class Patch { * * @returns An array of hunk instances */ - public async getHunks(): Promise<Hunk[] | null> { + public async getHunks(): Promise<Hunk[]> { const content = (await this._content()).split("\n"); const hunks = await this._ng_patch.hunks(); if(hunks.length === 0) { - return null; + return []; } const hunks_data = hunks.reduce((result: Hunks, hunk, hunk_index) => { |