Fixed bogus indentation

This commit is contained in:
Christoph Haas 2018-08-06 18:47:13 +02:00
parent 8e668603fc
commit 79d4c9f834

View file

@ -284,13 +284,13 @@ class PackagesController < ApplicationController
end
case params[:show]
when 'with'
packages = packages.with_screenshots
logger.debug 'Limiting packages to those with screenshots'
when 'without'
packages = packages.without_screenshots
logger.debug 'Limiting packages to those without screenshots'
end
when 'with'
packages = packages.with_screenshots
logger.debug 'Limiting packages to those with screenshots'
when 'without'
packages = packages.without_screenshots
logger.debug 'Limiting packages to those without screenshots'
end
return packages
end