Skip to content

Commit

Permalink
fix: #454, no file_names when sync from app (#463)
Browse files Browse the repository at this point in the history
* fix: #454, no `file_names` when sync from app

* fix
  • Loading branch information
ben-29 authored Jul 24, 2023
1 parent b71b5a0 commit 46b3a32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/generator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ def sync_from_app(self, app_tracks):
sys.stdout.write("+")
else:
sys.stdout.write(".")
synced_files.extend(t.file_names)
if "file_names" in t:
synced_files.extend(t.file_names)
sys.stdout.flush()

self.session.commit()
Expand Down

1 comment on commit 46b3a32

@vercel
Copy link

@vercel vercel bot commented on 46b3a32 Jul 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

running-page – ./

running-page-git-master-yihong0618.vercel.app
running-page-yihong0618.vercel.app
running-page.vercel.app

Please sign in to comment.