nutella_framework 0.6.3 → 0.6.4
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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/framework_components/roomcast-bot/roomcast_bot.rb +5 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad44e78761d414dfe190cc4509cc36279982907d
|
4
|
+
data.tar.gz: 021b2501c9568eb083f9bd6cace9ce317406b196
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94b14b20f31784b01d408173669c2ab88dc1dc0681f2d1834610b3fedb92ba8a3372eef60473ac114ff854d4365b6be5f93950a1e986b7252bc9de3dd19fd9a8
|
7
|
+
data.tar.gz: cbe7b91d6f7aef95465e50e584d8c446ab282996f2f28b9290bf3a1b8e6268b175f331d264e31e5562ed60f40d13e083b6de80b1e87266dacc095c4a47f49237
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.4
|
@@ -176,9 +176,13 @@ end
|
|
176
176
|
# Removes deleted channels ids from configs and notifies
|
177
177
|
def clean_configs(app_id, run_id)
|
178
178
|
configs_db = nutella.f.persist.get_run_json_object_store(app_id, run_id, 'configs')
|
179
|
+
channels_db = nutella.f.persist.get_run_json_object_store(app_id, run_id, 'channels')
|
180
|
+
if configs_db['configs'] == nil || channels_db['channels'] == nil
|
181
|
+
return
|
182
|
+
end
|
183
|
+
|
179
184
|
new_configs = configs_db.dup
|
180
185
|
|
181
|
-
channels_db = nutella.f.persist.get_run_json_object_store(app_id, run_id, 'channels')
|
182
186
|
ids = []
|
183
187
|
channels_db['channels'].each do |k, channel|
|
184
188
|
ids << k
|