From a338760ddd035419a270028a1a05eb9c5e0710bf Mon Sep 17 00:00:00 2001 From: Dan Chiarlone Date: Mon, 19 Feb 2024 13:48:15 -0800 Subject: [PATCH] Small bug fix on pidgtm/smithe common (#99) Signed-off-by: danbugs --- lib/src/common.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/common.rs b/lib/src/common.rs index dfda296..cfd4ae6 100644 --- a/lib/src/common.rs +++ b/lib/src/common.rs @@ -131,9 +131,9 @@ where let mut maybe_sgv = (*gql_vars.clone().lock().unwrap()).clone(); if maybe_delete_player_records(maybe_sgv.clone())? { - if e.to_string().contains("EOF while parsing a string") { + if e.to_string().contains("EOF while parsing") { tracing::error!( - "🏁 got 'EOF while parsing a string' at page {}!", + "🏁 got 'EOF while parsing' at page {}!", curr_page ); curr_page = 1;