From e1461693daf7795f0cac3a31c16d2f6c4e385edc Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Mon, 2 Mar 2026 12:25:32 +0400 Subject: [PATCH] chore: linting --- src-tauri/src/downloader.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-tauri/src/downloader.rs b/src-tauri/src/downloader.rs index 957bce7..ea9393d 100644 --- a/src-tauri/src/downloader.rs +++ b/src-tauri/src/downloader.rs @@ -1118,6 +1118,7 @@ pub async fn cancel_download(browser_str: String, version: String) -> Result<(), /// On Linux: `/camoufox/distribution/` /// On Windows: `/distribution/` /// Also includes `/distribution/` as a fallback for all platforms. +#[allow(clippy::vec_init_then_push)] fn find_camoufox_distribution_dirs(browser_dir: &Path) -> Vec { let mut dirs = Vec::new(); @@ -1140,8 +1141,7 @@ fn find_camoufox_distribution_dirs(browser_dir: &Path) -> Vec