We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e338d8 commit cba481aCopy full SHA for cba481a
lib/asset_sync/storage.rb
@@ -108,7 +108,7 @@ def update_remote_file_list_cache(local_files_to_upload)
108
return if ignore_existing_remote_files?
109
110
File.open(self.remote_file_list_cache_file_path, 'w') do |file|
111
- uploaded = local_files_to_upload + remote_files
+ uploaded = (local_files_to_upload + remote_files).uniq
112
file.write(uploaded.to_json)
113
end
114
0 commit comments