Populate created local settings file with an empty JSON object and comments

This commit is contained in:
Max Brunsfeld 2023-06-05 18:09:42 -07:00
parent cb975f1252
commit 296a0bf510
5 changed files with 55 additions and 20 deletions

View file

@ -1424,7 +1424,7 @@ async fn join_project(
)?;
}
for settings_file in dbg!(worktree.settings_files) {
for settings_file in worktree.settings_files {
session.peer.send(
session.connection_id,
proto::UpdateWorktreeSettings {
@ -1554,8 +1554,6 @@ async fn update_worktree_settings(
message: proto::UpdateWorktreeSettings,
session: Session,
) -> Result<()> {
dbg!(&message);
let guest_connection_ids = session
.db()
.await