Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Run patch editing sequentially
Sebastian Martinez committed 2 years ago
commit 9ca438ad8e97e43d8f0e33b6f40fa572341284b2
parent e0154ef94d265dee63b6827268fbf3dd83781391
1 file changed +7 -9
modified src/views/projects/Patch.svelte
@@ -710,15 +710,13 @@
                  patchState = "submit";
                  if (session) {
                    try {
-
                      await Promise.all([
-
                        editPatch(session.id, patch.title),
-
                        editRevision(
-
                          session.id,
-
                          patch.id,
-
                          comment,
-
                          Array.from(embeds.values()),
-
                        ),
-
                      ]);
+
                      await editPatch(session.id, patch.title);
+
                      await editRevision(
+
                        session.id,
+
                        patch.id,
+
                        comment,
+
                        Array.from(embeds.values()),
+
                      );
                    } finally {
                      patchState = "read";
                    }