From eecca73b846755ea18798c4d6dfe607a0d834b3a Mon Sep 17 00:00:00 2001 From: lifegpc Date: Fri, 20 Sep 2024 15:03:08 +0000 Subject: [PATCH] Fix typo --- src/db/sqlite/db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/sqlite/db.rs b/src/db/sqlite/db.rs index 205666c..1513bfe 100644 --- a/src/db/sqlite/db.rs +++ b/src/db/sqlite/db.rs @@ -325,7 +325,7 @@ impl PixivDownloaderSqlite { t.execute(PUSH_TASK_DATA_TABLE, [])?; } if !tables.contains_key("tmp_cache") { - t.execute("TMP_CACHE_TABLE", [])?; + t.execute(TMP_CACHE_TABLE, [])?; } t.commit()?; Ok(())