summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bortolin <simonebortolin@users.noreply.github.com>2022-08-13 20:10:31 +0200
committerSimone Bortolin <simonebortolin@users.noreply.github.com>2022-12-19 23:05:01 +0100
commita16e5d3d50618d36fb41ba01b0dced6c9f2c01ba (patch)
treef07abbc5e0315553b0382882e3ce5fe300254d99
parentupdate gpon auth (diff)
downloadhack-gpon.github.io-a16e5d3d50618d36fb41ba01b0dced6c9f2c01ba.tar
hack-gpon.github.io-a16e5d3d50618d36fb41ba01b0dced6c9f2c01ba.tar.gz
hack-gpon.github.io-a16e5d3d50618d36fb41ba01b0dced6c9f2c01ba.tar.bz2
hack-gpon.github.io-a16e5d3d50618d36fb41ba01b0dced6c9f2c01ba.tar.lz
hack-gpon.github.io-a16e5d3d50618d36fb41ba01b0dced6c9f2c01ba.tar.xz
hack-gpon.github.io-a16e5d3d50618d36fb41ba01b0dced6c9f2c01ba.tar.zst
hack-gpon.github.io-a16e5d3d50618d36fb41ba01b0dced6c9f2c01ba.zip
-rw-r--r--_layouts/default.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 718ea9e..3e258d2 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -251,8 +251,8 @@ layout: table_wrappers
var authors = commits.flatMap(x => [{...x.commit.author, ...x.author},{...x.commit.committer, ...x.committer}]).map(({date, ...keepAttrs}) => keepAttrs).filter((value, index, self) =>
index === self.findIndex((t) => (
- t.place === value.place && t.name === value.name
- ))
+ t.login === value.login
+ )) && value.login !== "web-flow"
);
document.getElementById('last-modified').textContent = "Last Modified: " + modified;
document.getElementById('contributors').textContent = authors.length + " "+ ( authors.length == 1? "Contributor" : "Contributors");