six-updater-web 0.24.1 → 0.24.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 }
|