Skip to content

Commit

Permalink
save fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
justind000 committed Aug 22, 2024
1 parent f6eaf76 commit d111598
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/files/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
var lines = contents.split('\n');
for (var i = 0; i < lines.length; i++) {
var line = lines[i].split('=');
if ($millproject.files.hasOwnProperty(line[0])) {
$millproject.files[line[0] as keyof typeof $millproject.files] = line[1];
}
// if ($millproject.files.hasOwnProperty(line[0])) {
// $millproject.files[line[0] as keyof typeof $millproject.files] = line[1];
// }
if ($millproject.common.hasOwnProperty(line[0])) {
$millproject.common[line[0] as keyof typeof $millproject.common] = line[1] as never;
}
Expand Down

0 comments on commit d111598

Please sign in to comment.