From 72a25ffdc50d06bb7ddee9a218b1e9d8b1b4cccc Mon Sep 17 00:00:00 2001 From: Koichi MATSUMOTO Date: Fri, 5 Jun 2020 02:03:10 +0900 Subject: [PATCH] BugFix: Fix undefined method `compare_and_save` (#921) Fix undefined method `compare_and_save` in config loader --- lib/config_loader.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config_loader.rb b/lib/config_loader.rb index 58abf9c21..a313bb190 100644 --- a/lib/config_loader.rb +++ b/lib/config_loader.rb @@ -65,7 +65,7 @@ class ConfigLoader if config return false if config.value.to_s == account_features.to_s - compare_and_save(config) + compare_and_save_feature(config) else save_as_new_config({ name: 'ACCOUNT_LEVEL_FEATURE_DEFAULTS', value: account_features }) end