Fix misc rubocop warnings.

This commit is contained in:
evazion
2020-06-16 21:36:15 -05:00
parent dc460aab53
commit b551e3634f
25 changed files with 75 additions and 95 deletions

View File

@@ -13,7 +13,7 @@ class UploadService
rescue Exception
end
return [upload, remote_size]
[upload, remote_size]
end
if file
@@ -21,7 +21,7 @@ class UploadService
Preprocessor.new(file: file).delayed_start(CurrentUser.id)
end
return [upload]
[upload]
end
end
end