Skip to content

Commit 5374b35

Browse files
committed
donotmerge: log fcm token when registered
1 parent 7bfbd86 commit 5374b35

File tree

1 file changed

+2
-3
lines changed
  • src/status_im/contexts/profile/push_notifications

1 file changed

+2
-3
lines changed

src/status_im/contexts/profile/push_notifications/effects.cljs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@
2929
(fn [_permissions]
3030
(pn-remote-token/request-fcm-token {})))
3131
(promesa/then
32-
(fn [{:keys [_fcm-token]}]
32+
(fn [{:keys [fcm-token]}]
3333
(logger/log-debug "registered fcm token for status news"
34-
;; NOTE(@seanstrom): temporarily avoid logging fcm-token
35-
#_{:fcm-token fcm-token})))
34+
{:fcm-token fcm-token})))
3635
(promesa/catch
3736
(fn [error]
3837
(logger/log-debug "failed to register fcm token for status news"

0 commit comments

Comments
 (0)