diff --git a/assets/jsons/changelogs.json b/assets/jsons/changelogs.json
index 96a9b6d6..2449caa0 100644
--- a/assets/jsons/changelogs.json
+++ b/assets/jsons/changelogs.json
@@ -2,13 +2,13 @@
"27.1.3" : {
"title" : "What's News ?",
"htmlBody" : "
Features
- Beat Saber versions now automatically sync with LIV #320
- Use ArcViewer to preview maps #312
Fixes
- SteamVR backup folder is now restored when disabling FPFC Mode #314
- OneClick installs now correctly place contents in user-defined symlinks #311
- Currently downloading Beat Saber version no longer disappears on uninstalling a version #307
- Add 'no-yeet' argument when launching Beat Saber to prevent mods to be removed if 'UserData' is linked #321
- Fixed a rare bug that prevent BSManager from launching due to a missing DLL #328
- Increase the SteamVR restore timeout to prevent it from launching in FPFC Mode #330
Other changes
- Improved Spanish translation #309 (Thanks to @GabiRP)
- For new installations, the default folder for BSManager contents has been moved from 'Documents' to the 'User' directory to avoid OneDrive conflicts #319
",
- "timestampPublished" : "1700788913",
+ "timestamp " : "1700788913",
"version" : "1.7.0"
},
"1.0.0" : {
"title" : "First Release",
"htmlBody" : "First release of the app.
",
- "timestampPublished" : "1700788913",
+ "timestamp " : "1700788913",
"version" : "1.0.0"
}
}
diff --git a/src/renderer/components/modal/modal-types/chabgelog-modal/changelog-modal.component.tsx b/src/renderer/components/modal/modal-types/chabgelog-modal/changelog-modal.component.tsx
index 1640daad..4c461e22 100644
--- a/src/renderer/components/modal/modal-types/chabgelog-modal/changelog-modal.component.tsx
+++ b/src/renderer/components/modal/modal-types/chabgelog-modal/changelog-modal.component.tsx
@@ -14,7 +14,7 @@ export const ChangelogModal: ModalComponent = ({ resolve
const openTwitter = () => linkOpener.open("https://twitter.com/BSManager_");
const openSupportPage = () => linkOpener.open("https://www.patreon.com/bsmanager");
const openDiscord = () => linkOpener.open("https://discord.gg/uSqbHVpKdV");
- const date = changelog?.timestampPublished ? new Date(changelog.timestampPublished * 1000).toLocaleDateString() : '';
+ const date = changelog?.timestamp ? new Date(changelog.timestamp * 1000).toLocaleDateString() : '';
return (