Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #149 from henry2423/master
Browse files Browse the repository at this point in the history
Fix MessageActionRequest Issue
  • Loading branch information
pvzig committed Feb 28, 2019
2 parents 1846597 + 054f8f2 commit 47865cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SKServer/Sources/Model/MessageActionRequest.swift
Expand Up @@ -43,7 +43,7 @@ public struct MessageActionRequest {
callbackID = response?["callback_id"] as? String
team = Team(team: response?["team"] as? [String: Any])
channel = Channel(channel: response?["channel"] as? [String: Any])
user = User(user: response?["channel"] as? [String: Any])
user = User(user: response?["user"] as? [String: Any])
actionTS = response?["action_ts"] as? String
messageTS = response?["message_ts"] as? String
attachmentID = response?["attachment_id"] as? String
Expand Down

0 comments on commit 47865cb

Please sign in to comment.