projects
/
oweals
/
peertube.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ebd316d
)
Fix typings
author
Chocobozzz
<me@florianbigard.com>
Tue, 5 Nov 2019 08:21:04 +0000
(09:21 +0100)
committer
Chocobozzz
<me@florianbigard.com>
Tue, 5 Nov 2019 08:21:04 +0000
(09:21 +0100)
scripts/generate-code-contributors.ts
patch
|
blob
|
history
diff --git
a/scripts/generate-code-contributors.ts
b/scripts/generate-code-contributors.ts
index 8cc3dc5b454b49783334811cfd5014c29944fe5b..5635d988952e052131507e0fe0ef92be6cf3cc29 100755
(executable)
--- a/
scripts/generate-code-contributors.ts
+++ b/
scripts/generate-code-contributors.ts
@@
-91,5
+91,5
@@
async function fetchZanata (zanataUsername: string, zanataPassword: string) {
get(year2019, headers)
])
- return uniqBy(
(results2018.concat(results2019))
, 'username')
+ return uniqBy(
results2018.concat(results2019) as { username: string }[]
, 'username')
}