Fix #11353
This commit is contained in:
Martin McKeaveney 2023-09-12 16:37:45 +01:00 committed by GitHub
commit b9c021c5f2
1 changed files with 1 additions and 2 deletions

View File

@ -63,8 +63,7 @@
)
const githubResponse = await githubCheck.json()
//Get tag and remove the v infront of the tage name e.g. v1.0.0 is 1.0.0
githubVersion = githubResponse.tag_name.slice(1)
githubVersion = githubResponse.tag_name
//Get the release date and output it in the local time format
githubPublishedDate = new Date(githubResponse.published_at)