diff options
author | HampusM <hampus@hampusmat.com> | 2021-05-10 16:41:31 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-05-10 16:41:31 +0200 |
commit | 35750791cdf588f74ac6cf84fab4af911df7a0cb (patch) | |
tree | fadeb8a91b6b74376d682004d9d7f88197420900 /api | |
parent | d546492f4fd400ae61a6abbe1905fdbc67451c4d (diff) |
Fixed commit file index regex because Git is weird
Diffstat (limited to 'api')
-rw-r--r-- | api/git.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -212,7 +212,7 @@ function getCommit(base_dir, repo, hash) file_info[data[1].replaceAll(' ', "_")] = data[2]; } else if(line.includes("index")) { - const data = /^index\ ([0-9a-f,]+)\.\.([0-9a-f,]+)(?:\ (\d{6}))?$/.exec(line).slice(1); + const data = /^index\ ([0-9a-f,]+)\.\.([0-9a-f,]+)(?:\ ([0-9,]+))?$/.exec(line).slice(1); file_info["index"] = { "before": data[0], "after": data[1] }; if(data[2]) { file_info["index"]["mode"] = data[2]; |