diff options
-rw-r--r-- | yt/src/status/mod.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/yt/src/status/mod.rs b/yt/src/status/mod.rs index 9ffec27..4dc8fab 100644 --- a/yt/src/status/mod.rs +++ b/yt/src/status/mod.rs @@ -86,8 +86,6 @@ pub async fn show(app: &App) -> Result<()> { } }; - let db_version = get_version(app).await?; - let cache_usage_raw = Downloader::get_current_cache_allocation(app) .await .context("Failed to get current cache allocation")?; @@ -106,8 +104,7 @@ Dropped Videos: {dropped_videos_len} {watchtime_status} Subscriptions: {subscriptions_len} - Cache usage: {cache_usage} - DB version: {db_version}" + Cache usage: {cache_usage}" ); Ok(()) |