Skip to content

Commit

Permalink
add_get_remove_MessageAction
Browse files Browse the repository at this point in the history
  • Loading branch information
jguz-pubnub committed Aug 13, 2024
1 parent 6c08037 commit 4659bf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class GetUUIDMetadataImpl(
onSuccess = callback.onSuccessHandler {
PNUUIDMetadataResult(
status = 200,
data = it?.let { createPNUUIDMetadata(from = it) }
data = createPNUUIDMetadata(it)
)
},
onFailure = callback.onFailureHandler()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class SetUUIDMetadataImpl(
onSuccess = callback.onSuccessHandler {
PNUUIDMetadataResult(
status = 200,
data = it?.let { createPNUUIDMetadata(from = it) }
data = createPNUUIDMetadata(it)
)
},
onFailure = callback.onFailureHandler()
Expand Down

0 comments on commit 4659bf1

Please sign in to comment.