six-updater-web 0.24.1 → 0.24.2
Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile
CHANGED
@@ -283,7 +283,7 @@ class MainController < ApplicationController
|
|
283
283
|
@mods = preset.all_mods(server, setting)
|
284
284
|
@mods.each do |mod|
|
285
285
|
mod.process(setting, reset, @autoskip)
|
286
|
-
case mod.status
|
286
|
+
case mod.status(setting)
|
287
287
|
when :special
|
288
288
|
@special << mod
|
289
289
|
when :disabled
|
@@ -295,7 +295,7 @@ class MainController < ApplicationController
|
|
295
295
|
when :install
|
296
296
|
@install << mod
|
297
297
|
else
|
298
|
-
logger.debug "Warning; weird mod status: #{mod.status}"
|
298
|
+
logger.debug "Warning; weird mod status: #{mod.status(setting)}"
|
299
299
|
end
|
300
300
|
end
|
301
301
|
@skip.sort! { |a, b| a.name <=> b.name }
|