From 29f3c88d481f3d1641b4f12a332674daae9d9201 Mon Sep 17 00:00:00 2001 From: "Richard T. Carback III" <rick.carback@gmail.com> Date: Thu, 8 Jun 2023 19:54:07 +0000 Subject: [PATCH] Update Deps --- go.mod | 2 +- go.sum | 2 ++ wasm/channels.go | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index a9df00b7..d019676b 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ require ( github.com/spf13/cobra v1.7.0 github.com/spf13/jwalterweatherman v1.1.0 github.com/stretchr/testify v1.8.2 - gitlab.com/elixxir/client/v4 v4.6.4-0.20230608180252-97c80bec3eec + gitlab.com/elixxir/client/v4 v4.6.4-0.20230608195010-ff2eeb3e1127 gitlab.com/elixxir/crypto v0.0.7-0.20230607170539-92d9508c78f9 gitlab.com/elixxir/primitives v0.0.3-0.20230214180039-9a25e2d3969c gitlab.com/elixxir/wasm-utils v0.0.0-20230607204433-22c46f9d680f diff --git a/go.sum b/go.sum index 5543c8ea..7aa26335 100644 --- a/go.sum +++ b/go.sum @@ -523,6 +523,8 @@ gitlab.com/elixxir/client/v4 v4.6.4-0.20230608170359-6f802c11e487 h1:th4mIU968Zu gitlab.com/elixxir/client/v4 v4.6.4-0.20230608170359-6f802c11e487/go.mod h1:GyXpu03l8AybmrGSq+AiKTuB+oJI5of78MdvdqFo29U= gitlab.com/elixxir/client/v4 v4.6.4-0.20230608180252-97c80bec3eec h1:qwVxyrJfcrPcifvMEO/yn2DUKiB00WCSyby6gS+fzw4= gitlab.com/elixxir/client/v4 v4.6.4-0.20230608180252-97c80bec3eec/go.mod h1:GyXpu03l8AybmrGSq+AiKTuB+oJI5of78MdvdqFo29U= +gitlab.com/elixxir/client/v4 v4.6.4-0.20230608195010-ff2eeb3e1127 h1:n8i9zcYkZwFWcBNo7wB5RsGyXTx7gT4AIqoiSNOlVAs= +gitlab.com/elixxir/client/v4 v4.6.4-0.20230608195010-ff2eeb3e1127/go.mod h1:GyXpu03l8AybmrGSq+AiKTuB+oJI5of78MdvdqFo29U= gitlab.com/elixxir/comms v0.0.4-0.20230519211512-4a998f4b0938 h1:f27+QUFiGWrprKm+fstOg3ABkYLpWcZi3+8Lf5eDnqY= gitlab.com/elixxir/comms v0.0.4-0.20230519211512-4a998f4b0938/go.mod h1:z+qW0D9VpY5QKTd7wRlb5SK4kBNqLYsa4DXBcUXue9Q= gitlab.com/elixxir/crypto v0.0.7-0.20230607170539-92d9508c78f9 h1:+RZcoU7NOPXCenkKM/ImYyLcNDdG4vsWrJyKqoAAv8k= diff --git a/wasm/channels.go b/wasm/channels.go index b3535c9c..498a8a08 100644 --- a/wasm/channels.go +++ b/wasm/channels.go @@ -1710,10 +1710,10 @@ func (cm *ChannelsManager) SetMobileNotificationsLevel(_ js.Value, args []js.Val // - Throws an error if getting the report fails. func GetChannelNotificationReportsForMe(_ js.Value, args []js.Value) any { notificationFilterJSON := utils.CopyBytesToGo(args[0]) - notificationDataJSON := utils.CopyBytesToGo(args[1]) + notificationDataCSV := args[1].String() report, err := bindings.GetChannelNotificationReportsForMe( - notificationFilterJSON, notificationDataJSON) + notificationFilterJSON, notificationDataCSV) if err != nil { exception.ThrowTrace(err) return nil -- GitLab