From aa140ba058a770be58e5ef39b7c762cb9664dc2d Mon Sep 17 00:00:00 2001 From: Wyatt McCarthy Date: Wed, 13 Aug 2025 13:14:07 -0700 Subject: [PATCH] support webp too --- src/commands/sync.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/sync.rs b/src/commands/sync.rs index 73bfe1f..571b83e 100644 --- a/src/commands/sync.rs +++ b/src/commands/sync.rs @@ -689,7 +689,7 @@ impl SyncSession { fn is_image_asset(path: &Path) -> bool { match path.extension().and_then(|ext| ext.to_str()) { // TODO: Expand the definition of images? - Some("png") | Some("jpg") => true, + Some("png") | Some("jpg") | Some("webp") => true, _ => false, }