diff --git a/src/status_im/data_store/settings.cljs b/src/status_im/data_store/settings.cljs index 1a7bb2e514..33280f2aac 100644 --- a/src/status_im/data_store/settings.cljs +++ b/src/status_im/data_store/settings.cljs @@ -25,6 +25,12 @@ {} custom-bootnodes)) +(defn rpc->stickers-packs [stickers-packs] + (reduce-kv (fn [acc pack-id stickers-pack] + (assoc acc (js/parseInt (name pack-id)) stickers-pack)) + {} + stickers-packs)) + (defn rpc->settings [settings] (-> settings (update :dapps-address eip55/address->checksum) @@ -32,4 +38,5 @@ (update :networks/networks rpc->networks) (update :wallet/visible-tokens rpc->visible-tokens) (update :pinned-mailservers rpc->pinned-mailservers) + (update :stickers/packs-installed rpc->stickers-packs) (update :currency keyword))) diff --git a/status-go-version.json b/status-go-version.json index e8a990dd35..78b10b2d6f 100644 --- a/status-go-version.json +++ b/status-go-version.json @@ -2,7 +2,7 @@ "_comment": "DO NOT EDIT THIS FILE BY HAND. USE 'scripts/update-status-go.sh ' instead", "owner": "status-im", "repo": "status-go", - "version": "v0.38.5", - "commit-sha1": "cf2d16d186f1aff84613b4442f25fbba34665328", - "src-sha256": "0crja1cpql4np8v1n478q0zjiynvagvwxm4diia2zry4w8bk290h" + "version": "v0.39.2", + "commit-sha1": "5546ce8c3001b76a5d741a20177497dce3e30653", + "src-sha256": "1h72gld4hhrhz6g9c2anzzbawxzapswg47d1vdn9w7q7zwm8pisb" }