From a8e802aa1914b7af409da595caadfd044fc96414 Mon Sep 17 00:00:00 2001 From: Philip Kristoffersen Date: Fri, 1 Apr 2022 18:04:09 +0200 Subject: [PATCH] Do not check if icon exists It has not been downloaded yet. Steam can handle if a icon does not exsists. --- src/sync/synchronization.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/sync/synchronization.rs b/src/sync/synchronization.rs index 584e9eb..359d883 100644 --- a/src/sync/synchronization.rs +++ b/src/sync/synchronization.rs @@ -115,9 +115,7 @@ fn fix_shortcut_icons( &shortcut.app_name, ); let new_icon_path = image_folder.join(image_type.file_name(app_id)); - if new_icon_path.exists() { shortcut.icon = new_icon_path.to_string_lossy().to_string(); - } } } }