fix(list): Skip unavailable files during iteration
Corrects a bug in handleFileList where return was used instead of continue inside the loop. Previously, the function would stop processing the entire file list as soon as it encountered an unavailable file. This change ensures that only the unavailable file is skipped and the iteration continues, allowing the processing of subsequent files in the list.