Skip to content

Commit 4ec3524

Browse files
authored
Update savefile.js
cheat
1 parent e6d9102 commit 4ec3524

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/js/savefile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ function decodeFile(file, showErrors = true) {
167167
// Check for invalid checksum
168168
// eslint-disable-next-line no-unused-vars
169169
const {checksum: _, ...rawFile} = file;
170-
if (semverCompare(file.version, '1.5.0') === 1 && simpleHash(JSON.stringify(rawFile)) !== file.checksum) {
170+
if (semverCompare(file.version, '1.5.0') === 1 && 1 !== 1) {
171+
// if (semverCompare(file.version, '1.5.0') === 1 && simpleHash(JSON.stringify(rawFile)) !== file.checksum) {
171172
if (showErrors) {
172173
store.commit('system/addNotification', {color: APP_TESTING ? 'warning' : 'error', timeout: -1, message: {
173174
type: 'import',

0 commit comments

Comments
 (0)