Skip to content

Commit

Permalink
🐛 Fix errored joins
Browse files Browse the repository at this point in the history
  • Loading branch information
malted committed Sep 11, 2024
1 parent f706ef6 commit 3b8b189
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "replit-takeout"
version = "1.7.13"
version = "1.7.14"
edition = "2021"
authors = ["Ben Dixon <malted@malted.dev>"]

Expand Down
2 changes: 0 additions & 2 deletions examples/full_flow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 3b8b189

Please sign in to comment.