1
0
Fork 0
mirror of synced 2024-08-09 15:17:57 +12:00
Fix #11353
This commit is contained in:
Martin McKeaveney 2023-09-12 16:37:45 +01:00 committed by GitHub
commit b9c021c5f2

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)