chromium: fix typo in update.mjs

It's committer, not commiter.

Slipped through 9b4cbadf48.
This commit is contained in:
emilylange
2025-09-03 00:09:12 +02:00
parent c76c91d0d8
commit f887ecd378
@@ -153,7 +153,7 @@ async function get_gitiles_commit_date(base_url, rev) {
const response = await (await fetch(url)).text()
const json = JSON.parse(response.replace(`)]}'\n`, ''))
const date = new Date(json.commiter.time)
const date = new Date(json.committer.time)
return date.toISOString().split("T")[0]
}