foot_stats_simulator 1.0.1 → 1.0.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.
|
@@ -178,7 +178,7 @@ class SimulatorMatch < ActiveRecord::Base
|
|
|
178
178
|
end
|
|
179
179
|
|
|
180
180
|
def update_by_timeline
|
|
181
|
-
return if !status.nil?
|
|
181
|
+
return if !status.nil? && SimulatorMatch::STATUS_SEQUENCE[status.to_sym] >= SimulatorMatch::STATUS_SEQUENCE[:finished]
|
|
182
182
|
timeline.update_match
|
|
183
183
|
end
|
|
184
184
|
|