From 3b8b189012e89bb41752a409c70bc4209d47f09f Mon Sep 17 00:00:00 2001 From: Malted Date: Wed, 11 Sep 2024 19:14:54 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20errored=20joins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 2 +- examples/full_flow.rs | 2 -- src/main.rs | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 71ac843..c95412b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "replit-takeout" -version = "1.7.13" +version = "1.7.14" edition = "2021" authors = ["Ben Dixon "] diff --git a/examples/full_flow.rs b/examples/full_flow.rs index 176c215..4f0bfc1 100644 --- a/examples/full_flow.rs +++ b/examples/full_flow.rs @@ -42,8 +42,6 @@ async fn main() -> Result<()> { user.fields.status = ProcessState::ErroredMain; airtable::update_records(vec![user.clone()]).await?; - user.fields.failed_ids = errored.join(","); - // send_email( // &user.fields.email, // "Your Replitâ • export is slightly delayed :/".into(), diff --git a/src/main.rs b/src/main.rs index 44e1a12..767eea7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -224,7 +224,6 @@ async fn airtable_loop() -> Result<()> { user.fields.status = ProcessState::ErroredMain; airtable::update_records(vec![user.clone()]).await?; - user.fields.failed_ids = errored.join(","); // send_email( // &user.fields.email,